UNPKG

lism

Version:

Collection of TypeScript Utilities to help developers streamline their coding workflow.

11 lines (10 loc) 256 B
/** * 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; }