Interface IPrototype<Y>

TODO: Simplify

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

Type Parameters

  • Y

Hierarchy

Constructors

Properties

Constructors

  • Parameters

    • Rest ...params: any[]

    Returns Y

  • Parameters

    • Rest ...args: any[]

    Returns {
        [key: string]: any;
    }

    • [key: string]: any

Properties

prototype: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any

Generated using TypeDoc