UNPKG

perfrunner-core

Version:

Automated UI performance test tool to measure performance changes for the web apps and sites

3 lines (2 loc) 281 B
export declare function iterateAsync<TData, TRes>(sequence: TData[], asyncHandler: (arg: TData, i: number) => Promise<TRes>): AsyncGenerator<Awaited<TRes>, void, unknown>; export declare function asyncToArray<TResult>(asyncSequence: AsyncGenerator<TResult>): Promise<TResult[]>;