kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
14 lines (13 loc) • 855 B
TypeScript
import React from 'react';
import { AnimationConfig, Timeline } from '@kepler.gl/types';
import AnimationControllerFactory from './common/animation-control/animation-controller';
interface LayerAnimationControllerProps {
animationConfig: AnimationConfig;
setLayerAnimationTime: (x: number) => void;
children?: (isAnimating: boolean | undefined, startAnimation: () => void, pauseAnimation: () => void, resetAnimation: () => void, timeline: Timeline | undefined, setTimelineValue: (x: any) => void) => React.ReactElement | null;
}
declare function LayerAnimationControllerFactory(AnimationController: ReturnType<typeof AnimationControllerFactory>): React.FC<LayerAnimationControllerProps>;
declare namespace LayerAnimationControllerFactory {
var deps: (typeof AnimationControllerFactory)[];
}
export default LayerAnimationControllerFactory;