/** * Bounds in pixel coordinates * * Uses common order of top-left and bottom-right corners. */ export type PixelPointBounds = [ topLeft: [left: number, top: number], bottomRight: [right: number, bottom: number], ];