/** * Simple 2 dimensional coordinates. * * @category Internal */ export type Coords = { x: number; y: number; };