interface AbortableAsyncIterator<T> {
    abortController: AbortController;
    [asyncIterator](): AsyncIterator<T, any, undefined>;
}

Type Parameters

  • T extends any = any

Hierarchy

  • AsyncIterable<T>
    • AbortableAsyncIterator

Properties

abortController: AbortController

Methods

  • Returns AsyncIterator<T, any, undefined>