clean up of Text class
This commit is contained in:
9
ts/docx/run/text.ts
Normal file
9
ts/docx/run/text.ts
Normal file
@ -0,0 +1,9 @@
|
||||
import {XmlUnitComponent} from "../xml-components"
|
||||
|
||||
export class Text extends XmlUnitComponent {
|
||||
|
||||
constructor(text: string) {
|
||||
super("w:t");
|
||||
this.root = text;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user