Files
starface-outlook-sync-addin/node_modules/thingies/lib/concurrency.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

4 lines
175 B
TypeScript

import type { Code } from './types';
/** Limits concurrency of async code. */
export declare const concurrency: (limit: number) => <T = unknown>(code: Code<T>) => Promise<T>;