Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ClientPointEvent

A User interface event (e.g. mouse event, touch or MSGestureEvent) with captured clientX and clientY properties.

interface ClientPointEvent {
clientX: number;
clientY: number;
}

§Properties

§
clientX: number
[src]
§
clientY: number
[src]