Files
docx-js/ts/docx/run/text.ts
2016-05-09 13:02:59 +01:00

9 lines
185 B
TypeScript

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