/** * Execute queue of promises in a streaming fashion. * * Optimized for streaming: * - Expects an iterable as input * - Does not return a list of all results * * Inspired by github.com/rxaviers/async-pool */ export declare function promisesQueueStreaming(factories: AsyncIterable<() => Promise> | Iterable<() => Promise>, concurrency: number): Promise; //# sourceMappingURL=promisesQueueStreaming.d.ts.map