UNPKG

kepler.gl

Version:

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

21 lines (20 loc) 631 B
import React from 'react'; import { ReactComponentLike } from 'prop-types'; export interface AnimationItem { id: string; icon: ReactComponentLike; tooltip: string; } interface AnimationWindowControlProps { animationWindow?: string; setFilterAnimationWindow: (id: string) => void; toggleAnimationWindowControl: () => void; height?: string; animationItems: { [key: string]: AnimationItem; }; btnStyle: any; showAnimationWindowControl: boolean; } declare function AnimationWindowControlFactory(): React.FC<AnimationWindowControlProps>; export default AnimationWindowControlFactory;