Files
docx-js/ts/docx/paragraph/properties.ts
2017-03-08 21:36:09 +00:00

14 lines
295 B
TypeScript

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