UNPKG

caccl-api

Version:

A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.

7 lines (6 loc) 189 B
/** * Run functions in parallel * @author Gabe Abrams */ declare const parallelLimit: (tasks: (() => Promise<unknown>)[], limit: number) => Promise<any[]>; export default parallelLimit;