export class Document { private body: string; constructor() { this.body = "ggg"; } test() { return "hello"; } }