Files
docx-js/ts/docx/run/text.ts
2017-03-08 21:49:41 +00:00

10 lines
189 B
TypeScript

import { XmlUnitComponent } from "../xml-components";
export class Text extends XmlUnitComponent {
constructor(text: string) {
super("w:t");
this.root = text;
}
}