export type Rect = { left: number; top: number; /** * The right edge (exclusive). Pixels at x >= right are outside the rectangle. */ right: number; /** * The bottom edge (exclusive). Pixels at y >= bottom are outside the rectangle. */ bottom: number; }; //# sourceMappingURL=Rect.d.ts.map