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

ListPackagesResponse

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

The response from listing packages.

interface ListPackagesResponse {
nextPageToken?: string;
packages?: Package[];
}

§Properties

§
nextPageToken?: string
[src]

The token to retrieve the next page of packages, or empty if there are no more packages to return.

§
packages?: Package[]
[src]

The packages returned.