UNPKG

docx

Version:

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

13 lines (11 loc) 312 B
import { Attributes, XmlComponent } from "file/xml-components"; export class MultiLevelType extends XmlComponent { constructor(value: string) { super("w:multiLevelType"); this.root.push( new Attributes({ val: value, }), ); } }