UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

14 lines (10 loc) 320 B
import { XmlComponent } from "file/xml-components"; import { MathComponent } from "../math-component"; export class MathDenominator extends XmlComponent { constructor(children: MathComponent[]) { super("m:den"); for (const child of children) { this.root.push(child); } } }