Files
docx-js/src/file/styles/latent-styles/latent-styles.ts

13 lines
341 B
TypeScript
Raw Normal View History

2021-03-13 22:10:00 +00:00
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);
}
}
}