Interface WindowSize

Represents the size of the browser window.

interface WindowSize {
    height: number;
    width: number;
}

Properties

Properties

height: number

The height of the window in pixels.

width: number

The width of the window in pixels.