export declare function makeResponse(resp: T): Promise; /** * Loop through iterable one element at a time and await on async callback at every iteration * ^a7sx98zzqg5y */ export declare function asyncLoopOneAtATime(things: T[], cb: (t: T) => Promise): Promise; /** * Loop through iterable in parallel * @param things * @param cb * @returns */ export declare function asyncLoop(things: T[], cb: (t: T) => Promise): Promise;