UNPKG

kepler.gl

Version:

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

16 lines (15 loc) 519 B
import React from 'react'; import { LoadingMethod } from './load-data-modal'; interface ModalTabItemProps { currentMethod?: string; method: LoadingMethod; toggleMethod: (method: LoadingMethod) => void; } interface ModalTabProps { loadingMethods: LoadingMethod[]; toggleMethod: (method: LoadingMethod) => void; currentMethod?: string; } export declare const ModalTabItem: React.FC<ModalTabItemProps>; declare function ModalTabsFactory(): React.FC<ModalTabProps>; export default ModalTabsFactory;