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

10 lines
300 B
TypeScript

import {XmlComponent} from "../../docx/xml-components";
import {ParagraphProperties} from "../../docx/paragraph/properties";
export class ParagraphPropertiesDefaults extends XmlComponent {
constructor() {
super("w:pPrDefault");
this.root.push(new ParagraphProperties());
}
}