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

9 lines
185 B
TypeScript
Raw Normal View History

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