Represents options for a movable mouse action.

interface MouseMovableOption {
    space?: ScreenPositionSpace;
    x: number;
    y: number;
}

Hierarchy (view full)

Properties

Properties

The position space for the mouse action.

x: number

The x-coordinate for the mouse position.

y: number

The y-coordinate for the mouse position.