/** * Turn an `AsyncIterator` back into an `AsyncIterable` * - Useful to avoid infinite loops when you want to use `yield* this` in `[Symbol.asyncIterator]()` */ export declare class IteratorSequence implements AsyncIterable { private readonly _iterator; constructor(iterator: AsyncIterator); [Symbol.asyncIterator](): AsyncIterator; }