Files
docx-js/ts/docx/paragraph/properties.ts

13 lines
285 B
TypeScript

import {XmlComponent, Attributes} 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);
}
}