[]
type Rect = object;
Represents the location and size of a rectangle. The origin is at the top left corner.
height: number;
The height of the rectangle.
width: number;
The width of the rectangle.
x: number;
The X coordinate of the rectangle.
y: number;
The Y coordinate of the rectangle.