/** * Defines an object that has 2D-dimensions (`width` and `height`). */ export interface IRect { /** * The `width` of the object. */ width: number; /** * The `height` of the object. */ height: number; }