mirror of
https://github.com/strapi/strapi.git
synced 2025-07-27 10:56:36 +00:00
7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
export type MapAsync<T = any, R = any> = lodash.CurriedFunction3<
|
|
T[],
|
|
(element: T, index: number) => R | Promise<R>,
|
|
{ concurrency?: number },
|
|
Promise<R[]>
|
|
>;
|