Files
docx-js/src/file/paragraph/math/fraction/math-numerator.ts
2020-10-13 02:06:27 +01:00

14 lines
318 B
TypeScript

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);
}
}
}