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) 318 B
import { XmlComponent } from "file/xml-components"; import { MathComponent } from "../math-component"; export class MathNumerator extends XmlComponent { constructor(children: MathComponent[]) { super("m:num"); for (const child of children) { this.root.push(child); } } }