11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
![]() |
export class Document {
|
||
|
private body: string;
|
||
|
|
||
|
constructor() {
|
||
|
this.body = "ggg";
|
||
|
}
|
||
|
|
||
|
test() {
|
||
|
return "hello";
|
||
|
}
|
||
|
}
|