Files
e-tib.com/node_modules/.pnpm/gensequence@8.0.8/node_modules/gensequence/dist/ImplAsyncSequence.d.ts
Marc Mintel d14122005d Initial commit: E-TIB production hardening & E2E foundation
Former-commit-id: ef04fca3d76375630c05aac117bf586953f3b657
2026-04-28 19:11:38 +02:00

9 lines
508 B
TypeScript

import { AsyncLazyIterable, AsyncSequence, ThenArg } from './types.js';
export declare class ImplAsyncSequence<T> implements AsyncSequence<T> {
private i;
constructor(i: AsyncLazyIterable<T>);
private get iter();
[Symbol.asyncIterator](): AsyncIterableIterator<T> | AsyncIterator<T, any, any>;
reduceAsync<U>(fnReduceAsync: (previousValue: ThenArg<U>, currentValue: ThenArg<T>, currentIndex: number) => ThenArg<U> | Promise<ThenArg<U>>, initialValue?: ThenArg<U>): Promise<ThenArg<U>>;
}