UNPKG

iteragain

Version:

Javascript Iterable/Iterator/Generator-function utilities.

5 lines 269 B
import type { IteratorOrIterable, Awaited } from './types'; /** Calls `Promise.all` on all collected values. */ export declare function promiseAll<T>(arg: IteratorOrIterable<T>): Promise<Awaited<T>[]>; export default promiseAll; //# sourceMappingURL=promiseAll.d.ts.map