bookr-cli
Version:
A terminal-based CLI tool to book time in Jira using the Tempo plugin by parsing your current Git branch name
6 lines • 313 B
TypeScript
/**
* Execute a function on array items with limited concurrency
* This implementation avoids stack overflow, race conditions, and type safety issues
*/
export declare function parallelMapLimit<T, R>(arr: T[], limit: number, fn: (item: T) => Promise<R>): Promise<R[]>;
//# sourceMappingURL=concurrency.d.ts.map