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

11 lines
305 B
TypeScript

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