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

ListNpmPackagesResponse

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

The response from listing npm packages.

interface ListNpmPackagesResponse {
nextPageToken?: string;
npmPackages?: NpmPackage[];
}

§Properties

§
nextPageToken?: string
[src]

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

§
npmPackages?: NpmPackage[]
[src]

The npm packages returned.