8 lines
101 B
TypeScript
8 lines
101 B
TypeScript
|
export class DeleteText {
|
||
|
text: string;
|
||
|
|
||
|
constructor(text: string) {
|
||
|
this.text = text;
|
||
|
}
|
||
|
}
|