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