@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>
10 lines • 623 B
TypeScript
import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type GlobalConfigItemValue = string | number | {
[k: string]: GlobalConfigItemValue | null;
} | Array<GlobalConfigItemValue | null> | boolean;
/** @internal */
export declare const GlobalConfigItemValue$inboundSchema: z.ZodType<GlobalConfigItemValue, z.ZodTypeDef, unknown>;
export declare function globalConfigItemValueFromJSON(jsonString: string): SafeParseResult<GlobalConfigItemValue, SDKValidationError>;
//# sourceMappingURL=globalconfigitemvalue.d.ts.map