import {XmlComponent} from "../../docx/xml-components"; import {RunProperties} from "../../docx/run/properties"; export class RunPropertiesDefaults implements XmlComponent { private rPrDefault: Array; xmlKeys = { rPrDefault: "w:rPrDefault" } constructor() { this.rPrDefault = new Array(); this.rPrDefault.push(new RunProperties()); } }