A screen, usually the one on which the current window is being rendered, and is obtained using window.screen.

interface Screen {
    availHeight: number;
    availWidth: number;
    colorDepth: number;
    height: number;
    orientation: ScreenOrientation;
    pixelDepth: number;
    width: number;
}

Properties

availHeight: number
availWidth: number
colorDepth: number
height: number
orientation: ScreenOrientation
pixelDepth: number
width: number

Generated using TypeDoc