Files
docx-js/src/file/paragraph/math/n-ary/math-base.ts

13 lines
296 B
TypeScript
Raw Normal View History

2019-08-20 20:40:40 +01:00
// http://www.datypic.com/sc/ooxml/e-m_e-1.html
import { XmlComponent } from "file/xml-components";
2020-10-10 13:41:26 +01:00
import { MathComponent } from "../math-component";
2019-08-20 20:40:40 +01:00
export class MathBase extends XmlComponent {
2020-10-10 13:41:26 +01:00
constructor(run: MathComponent) {
2019-08-20 20:40:40 +01:00
super("m:e");
this.root.push(run);
}
}