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

Counters

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

Represents entity counters.

interface Counters {
errored?: number | null;
failed?: number | null;
passed?: number | null;
skipped?: number | null;
stopped?: number | null;
total?: number | null;
warned?: number | null;
}

§Properties

§
errored?: number | null
[src]

The number of errored entities.

§
failed?: number | null
[src]

The number of failed entities.

§
passed?: number | null
[src]

The number of passed entities.

§
skipped?: number | null
[src]

The number of skipped entities.

§
stopped?: number | null
[src]

The number of stopped entities.

§
total?: number | null
[src]

The total number of entities.

§
warned?: number | null
[src]

The number of warned entities.