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

8 lines
101 B
TypeScript

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