Files
docx-js/ts/styles/latent-styles/index.ts
2017-03-09 11:11:07 +01:00

14 lines
334 B
TypeScript

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