UNPKG

kepler.gl

Version:

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

16 lines (15 loc) 503 B
import React from 'react'; import RangeSliderFactory from '../../common/range-slider'; declare type BrushConfigProps = { config: { size: number; }; onChange: (config: { size: number; }) => void; }; declare function BrushConfigFactory(RangeSlider: ReturnType<typeof RangeSliderFactory>): ({ config, onChange }: BrushConfigProps) => React.JSX.Element; declare namespace BrushConfigFactory { var deps: (typeof RangeSliderFactory)[]; } export default BrushConfigFactory;