interface PreDragActions {
    abort: (() => void);
    fluidLift: ((clientSelection: {
        x: number;
        y: number;
    }) => FluidDragActions);
    isActive: (() => boolean);
    shouldRespectForcePress: (() => boolean);
    snapLift: (() => SnapDragActions);
}

Properties

abort: (() => void)
fluidLift: ((clientSelection: {
    x: number;
    y: number;
}) => FluidDragActions)
isActive: (() => boolean)
shouldRespectForcePress: (() => boolean)
snapLift: (() => SnapDragActions)