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>

16 lines 625 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; /** * Cursor for the next page. */ export type ConnectPagination = { /** * Opaque value to pass as `cursor` on the next request. */ next: string | null; }; /** @internal */ export declare const ConnectPagination$inboundSchema: z.ZodType<ConnectPagination, z.ZodTypeDef, unknown>; export declare function connectPaginationFromJSON(jsonString: string): SafeParseResult<ConnectPagination, SDKValidationError>; //# sourceMappingURL=connectpagination.d.ts.map