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

10 lines
200 B
TypeScript
Raw Normal View History

2019-08-15 00:47:55 +01:00
import { XmlComponent } from "file/xml-components";
export class MathText extends XmlComponent {
constructor(readonly text: string) {
super("m:t");
this.root.push(text);
}
}