E.g.
@Controller()
export class AppController {
constructor(
private readonly appService: AppService,
private readonly playerService: PlayerService
) {}
}
The type is only specified as a TypeScript type which goes away at runtime, is there some custom compilation/additional parsing of typescript going on? Or something I'm missing?