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 full)

Properties

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