interface DragUpdate {
    combine?: {
        draggableId: string;
        droppableId: string;
    };
    destination?: {
        droppableId: string;
        index: number;
    };
    draggableId: string;
    mode: "FLUID" | "SNAP";
    source: {
        droppableId: string;
        index: number;
    };
    type: string;
}

Hierarchy (view full)

Properties

combine?: {
    draggableId: string;
    droppableId: string;
}
destination?: {
    droppableId: string;
    index: number;
}
draggableId: string
mode: "FLUID" | "SNAP"
source: {
    droppableId: string;
    index: number;
}
type: string