At the moment, Autowiring only works with private constructor properties.
Make it working with the following examples:
interface TestInterface {
}
class ExampleClass {
constructor(protected readonly parameter: TestInterface) {
}
}
or
interface TestInterface {
}
class ExampleClass {
private thing: TestInterface;
constructor(parameter: TestInterface) {
this.thing = parameter;
}
}