Interface IPrototype<Y>

TODO: Simplify

interface IPrototype<Y> {
    new IPrototype(...params: any[]): Y;
    new IPrototype(...args: any[]): { [key: string]: any };
    prototype: { [key: string]: any };
}

Type Parameters

  • Y

Hierarchy (View Summary)

Constructors

Properties

Constructors

Properties

prototype: { [key: string]: any }