UNPKG

docx

Version:

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

12 lines (9 loc) 287 B
import { IgnoreIfEmptyXmlComponent, XmlComponent } from "file/xml-components"; export class RunProperties extends IgnoreIfEmptyXmlComponent { constructor() { super("w:rPr"); } public push(item: XmlComponent): void { this.root.push(item); } }