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

View File

@ -122,12 +122,4 @@ export class Attributes extends XmlAttributeComponent {
this.root = {};
}
}
}
export class Text extends XmlUnitComponent {
constructor(text: string) {
super("w:t");
this.root = text;
}
}
}