/** * Execute all provided promises with a max concurrency * Results will be in the same order as the provided promises; if one promise rejects, * execution is stopped and the returned promise is rejected as well. * @param promises all promises to execute * @param concurrent the max number of concurrent promise executions */ export declare function executeAll(promises: Array<() => Promise>, concurrent?: number): Promise; //# sourceMappingURL=pool.d.ts.map