UNPKG

docx

Version:

Generate .docx documents with JavaScript (formerly Office-Clippy)

10 lines (8 loc) 301 B
import { ParagraphProperties } from "file/paragraph/properties"; import { XmlComponent } from "file/xml-components"; export class ParagraphPropertiesDefaults extends XmlComponent { constructor() { super("w:pPrDefault"); this.root.push(new ParagraphProperties()); } }