Files
docx-js/ts/docx/paragraph/properties.ts
2017-03-08 20:35:26 +00:00

13 lines
287 B
TypeScript

import { Attributes, XmlComponent } from "../xml-components";
export class ParagraphProperties extends XmlComponent {
constructor() {
super("w:pPr");
this.root.push(new Attributes());
}
push(item: XmlComponent): void {
this.root.push(item);
}
}