2023-01-27 16:10:18 +01:00

2 lines
158 B
TypeScript

export type MapAsync<T = any, R = any> = lodash.CurriedFunction3<T[], (element: T, index: number) => R | Promise<R>, { concurrency?: number }, Promise<R[]>>;