Files
docx-js/ts/styles/defaults/paragraph-properties.ts
2016-04-09 02:04:53 +01:00

15 lines
434 B
TypeScript

import {XmlComponent} from "../../docx/xml-components";
import {ParagraphProperties} from "../../docx/paragraph/properties";
export class ParagraphPropertiesDefaults implements XmlComponent {
private pPrDefault: Array<XmlComponent>;
xmlKeys = {
pPrDefault: "w:pPrDefault"
}
constructor() {
this.pPrDefault = new Array<XmlComponent>();
this.pPrDefault.push(new ParagraphProperties());
}
}