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

Platform

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

Each Platform is owned by a Product and owns a collection of channels. Available platforms are listed in Platform enum below. Not all Channels are available for every Platform (e.g. CANARY does not exist for LINUX).

interface Platform {
name?: string;
platformType?:
| "PLATFORM_TYPE_UNSPECIFIED"
| "WIN"
| "WIN64"
| "MAC"
| "LINUX"
| "ANDROID"
| "WEBVIEW"
| "IOS"
| "ALL"
| "MAC_ARM64"
| "LACROS"
| "LACROS_ARM32"
| "CHROMEOS"
| "LACROS_ARM64"
| "FUCHSIA"
| "WIN_ARM64";
}

§Properties

§
name?: string
[src]

Platform name. Format is "{product}/platforms/{platform}"

§
platformType?: "PLATFORM_TYPE_UNSPECIFIED" | "WIN" | "WIN64" | "MAC" | "LINUX" | "ANDROID" | "WEBVIEW" | "IOS" | "ALL" | "MAC_ARM64" | "LACROS" | "LACROS_ARM32" | "CHROMEOS" | "LACROS_ARM64" | "FUCHSIA" | "WIN_ARM64"
[src]

Type of platform.