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

ListBranchesResult

import type { ListBranchesResult } from "https://aws-api.deno.dev/v0.4/services/amplify.ts?docs=full";

The result structure for the list branches request.

interface ListBranchesResult {
branches: Branch[];
nextToken?: string | null;
}

§Properties

§
branches: Branch[]
[src]

A list of branches for an Amplify app.

§
nextToken?: string | null
[src]

A pagination token. If a non-null pagination token is returned in a result, pass its value in another request to retrieve more entries.