type Construct<A,R>
Convenience type for any type having a constructor.
Definition
export type Construct<A extends any[] = any[], R = any> = {
new (...args: A): R;
};
type Construct<A,R>
Convenience type for any type having a constructor.
export type Construct<A extends any[] = any[], R = any> = {
new (...args: A): R;
};