Interface Screen

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

    MDN Reference

    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