Generic type for class constructors
Represents a class that can be instantiated with any arguments. Useful for dependency injection and dynamic class resolution.
const controllers: Constructor<Controller>[] = [ UsersController, ProductsController] Copy
const controllers: Constructor<Controller>[] = [ UsersController, ProductsController]
Generic type for class constructors
Represents a class that can be instantiated with any arguments. Useful for dependency injection and dynamic class resolution.