UNPKG

kepler.gl

Version:

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

30 lines (29 loc) 1.05 kB
import React from 'react'; import TimeRangeSliderFactory from '../common/time-range-slider'; import { TimeRangeFilter } from '@kepler.gl/types'; import { TimeRangeFilterProps } from './types'; export declare function timeRangeSliderFieldsSelector(filter: TimeRangeFilter): { id: string; domain: any[] & [number, number]; bins: Object | undefined; value: any; plotType: string & { [key: string]: any; }; lineChart: import("@kepler.gl/types").LineChart | undefined; yAxis: any; step: number; speed: number; histogram: import("@kepler.gl/types").HistogramBin[]; animationWindow: string; isAnimating: boolean; timezone: string | null | undefined; timeFormat: string; isMinified: boolean; isEnlarged: boolean; }; declare function TimeRangeFilterFactory(TimeRangeSlider: ReturnType<typeof TimeRangeSliderFactory>): React.FC<TimeRangeFilterProps>; declare namespace TimeRangeFilterFactory { var deps: (typeof TimeRangeSliderFactory)[]; } export default TimeRangeFilterFactory;