tsyringe icon indicating copy to clipboard operation
tsyringe copied to clipboard

Docs: fix resource import in README

Open juliolmuller opened this issue 8 months ago • 0 comments

Small adjsutment of README code examples.

- import {injectable, injectAll} from "tsyringe";
+ import {injectable, inject} from "tsyringe";

@injectable()
class Foo {
  constructor(@inject("Database", { isOptional: true }) private database?: Database) {}
}

juliolmuller avatar Jun 02 '25 19:06 juliolmuller