Files
docx-js/src/file/paragraph/math/math-text.ts
2020-10-10 13:41:26 +01:00

10 lines
191 B
TypeScript

import { XmlComponent } from "file/xml-components";
export class MathText extends XmlComponent {
constructor(text: string) {
super("m:t");
this.root.push(text);
}
}