2017-03-09 09:45:01 +01:00
|
|
|
import { RunProperties } from "../../docx/run/properties";
|
|
|
|
import { XmlComponent } from "../../docx/xml-components";
|
2016-04-09 02:04:53 +01:00
|
|
|
|
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");
|
2016-05-26 15:08:34 +01:00
|
|
|
this.root.push(new RunProperties());
|
2016-04-09 02:04:53 +01:00
|
|
|
}
|
2017-03-09 09:45:01 +01:00
|
|
|
}
|