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

IosVersion

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

An iOS version.

interface IosVersion {
id?: string;
majorVersion?: number;
minorVersion?: number;
supportedXcodeVersionIds?: string[];
tags?: string[];
}

§Properties

§
id?: string
[src]

An opaque id for this iOS version. Use this id to invoke the TestExecutionService.

§
majorVersion?: number
[src]

An integer representing the major iOS version. Examples: "8", "9".

§
minorVersion?: number
[src]

An integer representing the minor iOS version. Examples: "1", "2".

§
supportedXcodeVersionIds?: string[]
[src]

The available Xcode versions for this version.

§
tags?: string[]
[src]

Tags for this dimension. Examples: "default", "preview", "deprecated".