stack

Home > @infiniteobjects/type-utils > ClassConstructor

ClassConstructor type

A constructor of classes of type T

Signature:

export type ClassConstructor<T> = {
    new (...args: any[]): T;
};