kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
10 lines (9 loc) • 395 B
TypeScript
import { DragEndEvent, DragStartEvent } from '@dnd-kit/core';
import { Effect } from '@kepler.gl/types';
declare type DndEffectsHook = {
activeEffect: Effect | undefined;
onDragStart: (event: DragStartEvent) => void;
onDragEnd: (event: DragEndEvent) => void;
};
declare const useDndEffects: (effects: Effect[], effectOrder: string[]) => DndEffectsHook;
export default useDndEffects;