Type alias IConstructor<T>

IConstructor<T>: {
    prototype: T;
    new (): T;
}

Type Parameters

  • T

Type declaration

    • new (): T
    • Returns T

  • prototype: T