Interface AsyncGeneratorFunctionConstructor

    interface AsyncGeneratorFunctionConstructor {
        new AsyncGeneratorFunctionConstructornew (...args: string[]): AsyncGeneratorFunction;
        length: number;
        name: string;
        prototype: AsyncGeneratorFunction;
        (...args: string[]): AsyncGeneratorFunction;
    }

    Constructors

    Properties

    Constructors

    Properties

    length: number

    The length of the arguments.

    name: string

    Returns the name of the function.

    A reference to the prototype.