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

GetPackageVersionAssetResult

import type { GetPackageVersionAssetResult } from "https://aws-api.deno.dev/v0.4/services/codeartifact.ts?docs=full";
interface GetPackageVersionAssetResult {
asset?: ReadableStream<Uint8Array> | null;
assetName?: string | null;
packageVersion?: string | null;
packageVersionRevision?: string | null;
}

§Properties

§
asset?: ReadableStream<Uint8Array> | null
[src]

The binary file, or asset, that is downloaded.

§
assetName?: string | null
[src]

The name of the asset that is downloaded.

§
packageVersion?: string | null
[src]

A string that contains the package version (for example, 3.5.2).

§
packageVersionRevision?: string | null
[src]

The name of the package version revision that contains the downloaded asset.