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

Resolution

import type { Resolution } from "https://aws-api.deno.dev/v0.4/services/devicefarm.ts?docs=full";

Represents the screen resolution of a device in height and width, expressed in pixels.

interface Resolution {
height?: number | null;
width?: number | null;
}

§Properties

§
height?: number | null
[src]

The screen resolution's height, expressed in pixels.

§
width?: number | null
[src]

The screen resolution's width, expressed in pixels.