mirror of
https://github.com/strapi/strapi.git
synced 2025-07-27 10:56:36 +00:00
2 lines
158 B
TypeScript
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[]>>;
|