10 lines
191 B
TypeScript
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);
|
|
}
|
|
}
|