/** * A 2D coordinate, in pixels, relative to the viewport — the shape used for * drag deltas and other point-based interactions (see {@link PointerActions.drag}). */ export interface Point { x: number; y: number; }