UNPKG

@punkbit/test24jan

Version:

A standalone package for Fleek Agents AI user-interface

8 lines (7 loc) 314 B
import { ZodObject, type ZodRawShape } from 'zod'; type ValidateZodArgs<T extends ZodRawShape> = { payload: any; schema: ZodObject<T>; }; export declare const validateZod: <T extends ZodRawShape>({ payload, schema, }: ValidateZodArgs<T>) => boolean | import("./transformData").FormattedError[]; export {};