#javascript #typescript #dependency-injection #inversifyjs
Вопрос:
Как я могу передать параметр bar
в класс FooImpl
с помощью InversifyJS?
@injectable() class FooImpl implements Foo { bar: string constructor(bar: string) { this.bar = bar } } interface Foo {} const container = new Container() container .bindlt;Foogt;("Foo") .to(FooImpl) class Bar { constructor() { container.get("Foo") } }