Files
docx-js/src/file/paragraph/properties.ts
2017-12-30 20:25:16 +00:00

14 lines
297 B
TypeScript

// http://officeopenxml.com/WPparagraphProperties.php
import { XmlComponent } from "file/xml-components";
export class ParagraphProperties extends XmlComponent {
constructor() {
super("w:pPr");
}
public push(item: XmlComponent): void {
this.root.push(item);
}
}