/** * Model: Rectangle * * THIS FILE HAS BEEN AUTOMATICALLY GENERATED. DO NOT EDIT. * */ /** * A rectangle that expresses a bounding box in absolute coordinates. */ export interface Rectangle { /** X coordinate of top left corner of the rectangle. */ x: number; /** Y coordinate of top left corner of the rectangle. */ y: number; /** Width of the rectangle. */ width: number; /** Height of the rectangle. */ height: number; } //# sourceMappingURL=rectangle.d.ts.map