UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

17 lines (16 loc) 465 B
import React from 'react'; import { IntlShape } from 'react-intl'; export interface MetaInnerContainerProps { width: number; height: number; } declare type LoadTilesetTabProps = { meta: { [key: string]: any; }; isAddingDatasets: boolean; onTilesetAdded: (tilesetInfo: any, metadata?: any) => void; intl: IntlShape; }; declare function LoadTilesetTabFactory(): React.FC<LoadTilesetTabProps>; export default LoadTilesetTabFactory;