UNPKG

docx

Version:

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

16 lines (13 loc) 372 B
import { Attributes, XmlComponent } from "file/xml-components"; export class Style extends XmlComponent { public readonly styleId: string; constructor(styleId: string) { super("w:pStyle"); this.styleId = styleId; this.root.push( new Attributes({ val: styleId, }), ); } }