export type MapFn = (currentValue: T, index: number, array: T[]) => U; /** Lets you map over any array with a async function while setting a max. concurrency Taken and improved from https://codeburst.io/async-map-with-limited-parallelism-in-node-js-2b91bd47af70 */ export declare const mapMany: (array: T[], mapFn: (item: T, index: number, array: T[]) => Promise, limit?: number) => Promise; //# sourceMappingURL=mapMany.d.ts.map