Files
docx-js/src/file/paragraph/math/math.ts

20 lines
495 B
TypeScript
Raw Normal View History

2019-08-15 00:47:55 +01:00
// http://www.datypic.com/sc/ooxml/e-m_oMath-1.html
import { XmlComponent } from "file/xml-components";
import { MathFraction } from "./fraction";
import { MathRun } from "./math-run";
export interface IMathOptions {
readonly children: Array<MathRun | MathFraction>;
}
export class Math extends XmlComponent {
constructor(readonly options: IMathOptions) {
super("m:oMath");
for (const child of options.children) {
this.root.push(child);
}
}
}