docx-rs/docx-wasm/js/text.ts

8 lines
92 B
TypeScript

export class Text {
text = "";
constructor(text: string) {
this.text = text;
}
}