Inject class implementation into abstract controller implementation based on an interface via NestJS
问题 I'm currently trying to work out a setup using NestJS injection, but I'm running into errors when trying to run the server. The problem that I'm running into has to do with me trying to inject a class into a controller which extends an abstract class and I'm trying to set a property of the abstract class in the constructor. Controller.ts @Controller() export class exampleController extends AbstractController { constructor(exampleClass: exampleInterface) { super(exampleClass); } @Get()