UNPKG

@vercel/sdk

Version:

<p align="center"> <a href="https://vercel.com"> <img src="https://assets.vercel.com/image/upload/v1588805858/repositories/vercel/logo.png" height="96"> <h3 align="center">Vercel</h3> </a> <p align="center">Develop. Preview. Ship.</p> </p>

18 lines 734 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; import { VcrImageListItem } from "./vcrimagelistitem.js"; /** * A paginated list of images for a repository. */ export type VcrImageList = { images: Array<VcrImageListItem>; /** * Cursor to fetch the next page of results, when more are available. */ nextCursor?: string | undefined; }; /** @internal */ export declare const VcrImageList$inboundSchema: z.ZodType<VcrImageList, z.ZodTypeDef, unknown>; export declare function vcrImageListFromJSON(jsonString: string): SafeParseResult<VcrImageList, SDKValidationError>; //# sourceMappingURL=vcrimagelist.d.ts.map