2022-06-26 23:26:42 +01:00
|
|
|
import { XmlComponent } from "@file/xml-components";
|
2021-03-13 22:10:00 +00:00
|
|
|
import { LatentStyleException } from "./exceptions";
|
|
|
|
|
|
|
|
export class LatentStyles extends XmlComponent {
|
|
|
|
constructor(latentException?: LatentStyleException) {
|
|
|
|
super("w:latentStyles");
|
|
|
|
|
|
|
|
if (latentException) {
|
|
|
|
this.root.push(latentException);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|