/**
 * Represents the size of the browser window.
 *
 * @property {number} width - The width of the window in pixels.
 * @property {number} height - The height of the window in pixels.
 */
export interface WindowSize {
  width: number;
  height: number;
}
