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

Radios

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

Represents the set of radios and their states on a device. Examples of radios include Wi-Fi, GPS, Bluetooth, and NFC.

interface Radios {
bluetooth?: boolean | null;
gps?: boolean | null;
nfc?: boolean | null;
wifi?: boolean | null;
}

§Properties

§
bluetooth?: boolean | null
[src]

True if Bluetooth is enabled at the beginning of the test. Otherwise, false.

§
gps?: boolean | null
[src]

True if GPS is enabled at the beginning of the test. Otherwise, false.

§
nfc?: boolean | null
[src]

True if NFC is enabled at the beginning of the test. Otherwise, false.

§
wifi?: boolean | null
[src]

True if Wi-Fi is enabled at the beginning of the test. Otherwise, false.