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

10 lines
300 B
TypeScript
Raw Normal View History

2016-04-09 02:04:53 +01:00
import {XmlComponent} from "../../docx/xml-components";
import {ParagraphProperties} from "../../docx/paragraph/properties";
2016-04-09 20:16:35 +01:00
export class ParagraphPropertiesDefaults extends XmlComponent {
2016-04-09 02:04:53 +01:00
constructor() {
2016-04-09 20:16:35 +01:00
super("w:pPrDefault");
this.root.push(new ParagraphProperties());
2016-04-09 02:04:53 +01:00
}
}