13 lines
341 B
TypeScript
13 lines
341 B
TypeScript
![]() |
import { XmlComponent } from "file/xml-components";
|
||
|
import { LatentStyleException } from "./exceptions";
|
||
|
|
||
|
export class LatentStyles extends XmlComponent {
|
||
|
constructor(latentException?: LatentStyleException) {
|
||
|
super("w:latentStyles");
|
||
|
|
||
|
if (latentException) {
|
||
|
this.root.push(latentException);
|
||
|
}
|
||
|
}
|
||
|
}
|