/** * @module easelts */ export interface IRectangle { x: number; y: number; width: number; height: number; }