Files
docx-js/ts/styles/latent-styles/exceptions/index.ts

11 lines
322 B
TypeScript
Raw Normal View History

2017-03-09 09:45:01 +01:00
import { XmlComponent } from "../../../docx/xml-components";
import { LatentStyleExceptionAttributes } from "./attributes";
2016-04-09 02:04:53 +01:00
2016-04-09 20:16:35 +01:00
export class LatentStyleException extends XmlComponent {
2016-04-09 02:04:53 +01:00
constructor(attributes: LatentStyleExceptionAttributes) {
2016-04-09 20:16:35 +01:00
super("w:lsdException");
this.root.push(attributes);
2016-04-09 02:04:53 +01:00
}
2017-03-09 09:45:01 +01:00
}