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

10 lines
317 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);
}
}