8 lines
92 B
TypeScript
8 lines
92 B
TypeScript
|
export class Text {
|
||
|
text = "";
|
||
|
|
||
|
constructor(text: string) {
|
||
|
this.text = text;
|
||
|
}
|
||
|
}
|