/// /// interface SymbolConstructor { /** * A method that returns the default async iterator for an object. Called by the semantics of * the for-await-of statement. */ readonly asyncIterator: symbol; } interface AsyncIterator { next(value?: any): Promise>; return?(value?: any): Promise>; throw?(e?: any): Promise>; } interface AsyncIterable { [Symbol.asyncIterator](): AsyncIterator; } interface AsyncIterableIterator extends AsyncIterator { [Symbol.asyncIterator](): AsyncIterableIterator; }