Interface AsyncGeneratorFunction
interface AsyncGeneratorFunction {
new AsyncGeneratorFunction(...args: any[]): AsyncGenerator;
length: number;
name: string;
prototype: AsyncGenerator;
(...args: any[]): AsyncGenerator;
}
new AsyncGeneratorFunction(...args: any[]): AsyncGenerator;
length: number;
name: string;
prototype: AsyncGenerator;
(...args: any[]): AsyncGenerator;
}
- AsyncGeneratorFunction(...args: any[]): AsyncGenerator
Parameters
- ...args: any[]
A list of arguments the function accepts.
Returns AsyncGenerator
- ...args: any[]
Index
Constructors
Properties
Constructors
constructor
- new AsyncGeneratorFunction(...args: any[]): AsyncGenerator
Creates a new AsyncGenerator object.
Parameters
- ...args: any[]
A list of arguments the function accepts.
Returns AsyncGenerator
- ...args: any[]
Creates a new AsyncGenerator object.