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

GetPackageVersionReadmeResult

import type { GetPackageVersionReadmeResult } from "https://aws-api.deno.dev/v0.4/services/codeartifact.ts?docs=full";
interface GetPackageVersionReadmeResult {
format?: PackageFormat | null;
namespace?: string | null;
package?: string | null;
readme?: string | null;
version?: string | null;
versionRevision?: string | null;
}

§Properties

§
format?: PackageFormat | null
[src]

The format of the package with the requested readme file.

§
namespace?: string | null
[src]

The namespace of the package version with the requested readme file. The package version component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package version is its groupId.
  • The namespace of an npm package version is its scope.
  • Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
§
package?: string | null
[src]

The name of the package that contains the returned readme file.

§
readme?: string | null
[src]

The text of the returned readme file.

§
version?: string | null
[src]

The version of the package with the requested readme file.

§
versionRevision?: string | null
[src]

The current revision associated with the package version.