Constructor

Constructor<Type>

An instance of a type from the provided generic type variable Type.

constructor.type.ts
type Constructor<Type> = new (...args: any[]) => Type;

Generic type variables

Type

A generic type variable Type indicates the type of an instance.

Last updated