UNPKG

kepler.gl

Version:

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

17 lines (16 loc) 582 B
import React from 'react'; import InfoHelperFactory from '../../common/info-helper'; import { Layer } from '@kepler.gl/layers'; declare type VisConfigSwitchProps = { layer: Layer; property: string; onChange: (v: Record<string, boolean>) => void; label?: string; description?: string; disabled?: boolean; }; declare function VisConfigSwitchFactory(InfoHelper: ReturnType<typeof InfoHelperFactory>): React.FC<VisConfigSwitchProps>; declare namespace VisConfigSwitchFactory { var deps: (typeof InfoHelperFactory)[]; } export default VisConfigSwitchFactory;