kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
11 lines (10 loc) • 334 B
TypeScript
declare class RequestThrottle {
private serverQueues;
private maxConcurrentRequests;
constructor();
private getServerQueue;
getDebugInfo(): string;
throttleRequest<T>(serverKey: string, requestFunction: () => Promise<T>): Promise<T>;
}
export declare function getRequestThrottle(): RequestThrottle;
export {};