Function Evented

  • Returns (<T>(constructor) => {
        prototype: __type<any>;
        new (...args): __type<T>;
    } & T)

      • <T>(constructor): {
            prototype: __type<any>;
            new (...args): __type<T>;
        } & T
      • Type Parameters

        • T extends (new (...args) => object)

        Parameters

        • constructor: T

        Returns {
            prototype: __type<any>;
            new (...args): __type<T>;
        } & T

Generated using TypeDoc