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

13 lines
342 B
TypeScript
Raw Normal View History

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);
}
}
}