UNPKG

kepler.gl

Version:

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

14 lines (13 loc) 484 B
import React from 'react'; import { BaseComponentProps } from '../types'; export declare type TimeValueWrapperProps = BaseComponentProps & { isEnlarged?: boolean; }; interface TimeTitleProps { value: number[]; isEnlarged?: boolean; timezone?: string | null; timeFormat: string; } declare function TimeRangeSliderTimeTitleFactory(): ({ value, isEnlarged, timezone, timeFormat }: TimeTitleProps) => React.JSX.Element; export default TimeRangeSliderTimeTitleFactory;