deno.land / x / alosaur@v1.1.1 / examples / customdi / services / foo.service.ts
1234567891011export class FooService { private name: string = "Foo"; getName(): string { return `My name is ${this.name}`; }
setName(newName: string) { this.name = newName; }}
Version Info