/** * Applies an asynchronous function for each element in an array. * Each application evaluation is done sequentially. That is, an asynchronous function * application of an element is evaluated only when the previous applications * have finished. * * @param array The array to be iterated over * @param func The asynchronous function to be applied to each element * @returns A Promise that resolves once every application has been evaluated */ export declare function sequentialAsyncForEach(array: T[], func: (arg: T) => Promise): Promise; //# sourceMappingURL=async.d.ts.map