Files
docx-js/src/file/styles/latent-styles/index.ts
2018-01-23 01:33:12 +00:00

13 lines
327 B
TypeScript

import { XmlComponent } from "file/xml-components";
import { LatentStyleException } from "./exceptions";
export class LatentStyles extends XmlComponent {
constructor() {
super("w:latentStyles");
}
public push(latentException: LatentStyleException): void {
this.root.push(latentException);
}
}