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

Channel

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

Each Channel is owned by a Platform and owns a collection of versions. Possible Channels are listed in the Channel enum below. Not all Channels are available for every Platform (e.g. CANARY does not exist for LINUX).

interface Channel {
channelType?:
| "CHANNEL_TYPE_UNSPECIFIED"
| "STABLE"
| "BETA"
| "DEV"
| "CANARY"
| "CANARY_ASAN"
| "ALL"
| "EXTENDED"
| "LTS"
| "LTC";
name?: string;
}

§Properties

§
channelType?: "CHANNEL_TYPE_UNSPECIFIED" | "STABLE" | "BETA" | "DEV" | "CANARY" | "CANARY_ASAN" | "ALL" | "EXTENDED" | "LTS" | "LTC"
[src]

Type of channel.

§
name?: string
[src]

Channel name. Format is "{product}/platforms/{platform}/channels/{channel}"