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

CPU

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

Represents the amount of CPU that an app is using on a physical device. Does not represent system-wide CPU usage.

interface CPU {
architecture?: string | null;
clock?: number | null;
frequency?: string | null;
}

§Properties

§
architecture?: string | null
[src]

The CPU's architecture (for example, x86 or ARM).

§
clock?: number | null
[src]

The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

§
frequency?: string | null
[src]

The CPU's frequency.