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

Distribution

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

This represents a particular channel of distribution for a given package. E.g., Debian's jessie-backports dpkg mirror.

interface Distribution {
architecture?: "ARCHITECTURE_UNSPECIFIED" | "X86" | "X64";
cpeUri?: string;
description?: string;
latestVersion?: Version;
maintainer?: string;
url?: string;
}

§Properties

§
architecture?: "ARCHITECTURE_UNSPECIFIED" | "X86" | "X64"
[src]

The CPU architecture for which packages in this distribution channel were built.

§
cpeUri?: string
[src]

Required. The cpe_uri in CPE format denoting the package manager version distributing a package.

§
description?: string
[src]

The distribution channel-specific description of this package.

§
latestVersion?: Version
[src]

The latest available version of this package in this distribution channel.

§
maintainer?: string
[src]

A freeform string denoting the maintainer of this package.

§
url?: string
[src]

The distribution channel-specific homepage for this package.