Files
docx-js/ts/styles/defaults/run-properties.ts
2016-04-09 20:16:35 +01:00

10 lines
280 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());
}
}