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

12 lines
222 B
TypeScript

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