Files
docx-js/src/file/paragraph/properties.ts
2018-01-23 01:33:12 +00:00

13 lines
296 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);
}
}