/** * 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] ]; //# sourceMappingURL=PixelPointBounds.d.ts.map