Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Screen

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

interface Screen {
readonly availHeight: number;
readonly availWidth: number;
readonly colorDepth: number;
readonly height: number;
readonly orientation: ScreenOrientation;
readonly pixelDepth: number;
readonly width: number;
}
var Screen: {
prototype: Screen;
new (): Screen;
}
;

§Properties

§
readonly availHeight: number
[src]
§
readonly availWidth: number
[src]
§
readonly colorDepth: number
[src]
§
readonly height: number
[src]
§
readonly orientation: ScreenOrientation
[src]
§
readonly pixelDepth: number
[src]
§
readonly width: number
[src]