A double click action.

interface DoubleClick {
    type: "double_click";
    x: number;
    y: number;
}

Properties

Properties

type: "double_click"

Specifies the event type. For a double click action, this property is always set to double_click.

x: number

The x-coordinate where the double click occurred.

y: number

The y-coordinate where the double click occurred.