Files
docx-js/ts/styles/latent-styles/index.ts
2016-04-09 20:16:35 +01:00

13 lines
330 B
TypeScript

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