Files
docx-js/ts/styles/defaults/run-properties.ts

15 lines
426 B
TypeScript
Raw Normal View History

2016-04-09 02:04:53 +01:00
import {XmlComponent} from "../../docx/xml-components";
import {RunProperties} from "../../docx/run/properties";
export class RunPropertiesDefaults implements XmlComponent {
private rPrDefault: Array<XmlComponent>;
xmlKeys = {
rPrDefault: "w:rPrDefault"
}
constructor() {
this.rPrDefault = new Array<XmlComponent>();
this.rPrDefault.push(new RunProperties());
}
}