Files
docx-js/ts/styles/defaults/run-properties.ts
2017-03-09 11:11:07 +01:00

11 lines
281 B
TypeScript

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