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