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

Display

import type { Display } from "https://googleapis.deno.dev/v1/androidmanagement:v1.ts";

Device display information.

interface Display {
density?: number;
displayId?: number;
height?: number;
name?: string;
refreshRate?: number;
state?:
| "DISPLAY_STATE_UNSPECIFIED"
| "OFF"
| "ON"
| "DOZE"
| "SUSPENDED";
width?: number;
}

§Properties

§
density?: number
[src]

Display density expressed as dots-per-inch.

§
displayId?: number
[src]

Unique display id.

§
height?: number
[src]

Display height in pixels.

§
name?: string
[src]

Name of the display.

§
refreshRate?: number
[src]

Refresh rate of the display in frames per second.

§
state?: "DISPLAY_STATE_UNSPECIFIED" | "OFF" | "ON" | "DOZE" | "SUSPENDED"
[src]

State of the display.

§
width?: number
[src]

Display width in pixels.