Files
docx-js/ts/docx/run/text.ts

10 lines
189 B
TypeScript
Raw Normal View History

2017-03-08 21:49:41 +00:00
import { XmlUnitComponent } from "../xml-components";
2016-05-09 13:02:59 +01:00
export class Text extends XmlUnitComponent {
constructor(text: string) {
super("w:t");
this.root = text;
}
2017-03-08 21:49:41 +00:00
}