interface DropResult {
    combine?: {
        draggableId: string;
        droppableId: string;
    };
    destination?: {
        droppableId: string;
        index: number;
    };
    draggableId: string;
    mode: "FLUID" | "SNAP";
    reason: "DROP" | "CANCEL";
    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"
reason: "DROP" | "CANCEL"
source: {
    droppableId: string;
    index: number;
}
type: string