UNPKG

@dot.indonesia/po-gen

Version:

This project has created to relieve work load as SDET or Automation Test Engineer. You just export the postman collection, and run this generator to write the automation code.

8 lines (7 loc) 292 B
/** * @description looping any array * @param {Array} array array to be loop * @param {Promise} callback ooping item * @returns {Promise<void>} */ export declare function asyncForEach<T>(array: T[], callback: (item: T, index: number, array: T[]) => Promise<void>): Promise<void>;