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

8 lines
101 B
TypeScript
Raw Normal View History

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