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

11 lines
322 B
TypeScript

import { XmlComponent } from "../../../docx/xml-components";
import { LatentStyleExceptionAttributes } from "./attributes";
export class LatentStyleException extends XmlComponent {
constructor(attributes: LatentStyleExceptionAttributes) {
super("w:lsdException");
this.root.push(attributes);
}
}