UNPKG

kepler.gl

Version:

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

16 lines (15 loc) 558 B
import React from 'react'; import { Timeline } from '@kepler.gl/types'; import { BaseComponentProps } from '../types'; export declare type AnimationControlSliderProps = BaseComponentProps; interface TimelineSliderProps { timeline: Timeline; setTimelineValue: (value: [number] | [number, number]) => void; enableBarDrag?: boolean; showDomainTimes?: boolean; height?: number; className?: string | null; style?: object; } declare function TimelineSliderFactory(): React.FC<TimelineSliderProps>; export default TimelineSliderFactory;