import {XmlComponent} from "../../../docx/xml-components"; import {LatentStyleExceptionAttributes} from "./attributes"; export class LatentStyleException implements XmlComponent { private lsdException: Array; xmlKeys = { lsdException: "w:lsdException" } constructor(attributes: LatentStyleExceptionAttributes) { this.lsdException = new Array(); this.lsdException.push(attributes); } }