Preparing search index...
    interface FluidDragActions {
        cancel: (args?: { shouldBlockNextClick: boolean }) => void;
        drop: (args?: { shouldBlockNextClick: boolean }) => void;
        isActive: () => boolean;
        move: (clientSelection: { x: number; y: number }) => void;
        shouldRespectForcePress: () => boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cancel: (args?: { shouldBlockNextClick: boolean }) => void
    drop: (args?: { shouldBlockNextClick: boolean }) => void
    isActive: () => boolean
    move: (clientSelection: { x: number; y: number }) => void
    shouldRespectForcePress: () => boolean