Files
docx-js/ts/styles/defaults/run-properties.ts
2016-05-26 15:08:34 +01:00

10 lines
276 B
TypeScript

import {XmlComponent} from "../../docx/xml-components";
import {RunProperties} from "../../docx/run/properties";
export class RunPropertiesDefaults extends XmlComponent {
constructor() {
super("w:rPrDefault");
this.root.push(new RunProperties());
}
}