/** * Concurrently run a handler async function for each element of an array and resolve once each has resolved. * @param array The array to iterate over. * @param handler The handler to call for each array item. */ export declare function concurrentlyRunAll(array: T[], handler: (item: T) => Promise): Promise; //# sourceMappingURL=concurrency.d.ts.map