Skip to content

Instantly share code, notes, and snippets.

@radzserg
Created July 10, 2019 10:59
Show Gist options
  • Select an option

  • Save radzserg/b118d50451cda81f518e98316934df67 to your computer and use it in GitHub Desktop.

Select an option

Save radzserg/b118d50451cda81f518e98316934df67 to your computer and use it in GitHub Desktop.
@injectable()
export class Client {
constructor(@inject("SuperService") private service: SuperService) {}
}
container.register("SuperService", {
useClass: TestService
});
const client = container.resolve(Client);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment