chore(async-utils): indent

This commit is contained in:
nathan-pichon 2023-02-13 11:40:51 +01:00
parent 477750650e
commit 4c5e98b338
No known key found for this signature in database

View File

@ -8,9 +8,9 @@ export type MapAsync<T = any, R = any> = CurriedFunction3<
>;
export type ForEachAsync<T = any, R = any> = (
array: T[],
func: (element: T, index: number) => R | Promise<R>,
options?: { concurrency?: number }
array: T[],
func: (element: T, index: number) => R | Promise<R>,
options?: { concurrency?: number }
) => Promise<R[]>;
export type ReduceAsync<T = any, V = T, R = V> = CurriedFunction3<