aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@calebboyd/semaphore/each.d.ts
blob: 3c5894937ddac3489b83cb04a705d52bb7eaa83b (plain)
1
2
3
4
export declare function each<T>(this: any, list: Iterable<T>, iterator: Function, {context, concurrency}?: {
    context?: any;
    concurrency: null | number;
}): Promise<undefined>;