UNPKG

videx-3d

Version:

React 3D component library designed for sub surface visualizations in the browser

9 lines (8 loc) 282 B
/** * limit/throttle the number of async calls */ export declare const limit: <T>(asyncFunc: () => Promise<T>) => Promise<T>; /** * queue async calls using a priority queue */ export declare const queue: <T>(asyncFunc: () => Promise<T>, priority?: number) => Promise<void | T>;