clean up of Text class

This commit is contained in:
Dolan Miu
2016-05-09 13:02:59 +01:00
parent 9b268314e6
commit ea1390b86b
4 changed files with 11 additions and 13 deletions

9
ts/docx/run/text.ts Normal file
View File

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