10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
![]() |
import { XmlComponent } from "file/xml-components";
|
||
|
|
||
|
export class MathText extends XmlComponent {
|
||
|
constructor(readonly text: string) {
|
||
|
super("m:t");
|
||
|
|
||
|
this.root.push(text);
|
||
|
}
|
||
|
}
|