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

10 lines
280 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";
2016-04-09 20:16:35 +01:00
export class RunPropertiesDefaults extends XmlComponent {
2016-04-09 02:04:53 +01:00
constructor() {
2016-04-09 20:16:35 +01:00
super("w:rPrDefault");
this.root.push(new RunProperties());
2016-04-09 02:04:53 +01:00
}
}