kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
12 lines (11 loc) • 443 B
TypeScript
import React, { PropsWithChildren } from 'react';
import { Provider } from '@kepler.gl/cloud-providers';
declare type CloudListProviderProps = PropsWithChildren<{
providers: Provider[];
}>;
export declare const CloudListProvider: React.FC<CloudListProviderProps>;
/**
* this hook provides access the CloudList provider context
*/
export declare const useCloudListProvider: () => import("../context").CloudProviderContextType;
export {};