jeffijoe/awilix

View on GitHub
examples/typescript/src/services/TestService.ts

Summary

Maintainability
A
0 mins
Test Coverage
export default class TestService {
  data: string

  constructor() {
    this.data = 'Hello world!'
  }

  getData(): string {
    return this.data
  }
}