Files
docx-js/ts/docx/paragraph/properties.ts
2016-04-09 20:16:35 +01:00

13 lines
285 B
TypeScript

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