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

ListRepositoriesResponse

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

The response from listing repositories.

interface ListRepositoriesResponse {
nextPageToken?: string;
repositories?: Repository[];
}

§Properties

§
nextPageToken?: string
[src]

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

§
repositories?: Repository[]
[src]

The repositories returned.