Interface RecordsSyncAsyncIterator<T>

Async iterator for records sync with standard auto-pagination methods.

interface RecordsSyncAsyncIterator<T> {
    autoPagingEach: AutoPagingEach<T>;
    autoPagingToArray: AutoPagingToArray<T>;
}

Type Parameters

  • T

Hierarchy

  • AsyncIterableIterator<T>
    • RecordsSyncAsyncIterator

Properties

autoPagingEach: AutoPagingEach<T>
autoPagingToArray: AutoPagingToArray<T>