UNPKG

@jchinkle/react-arborist

Version:
8 lines (7 loc) 289 B
import { ActionTypes } from "../types/utils"; import { actions as dnd } from "./dnd-slice"; export type DragSlice = { id: string | null; idWillReceiveDrop: string | null; }; export declare function reducer(state: DragSlice | undefined, action: ActionTypes<typeof dnd>): DragSlice;