UNPKG

@fleek-platform/agents-ui

Version:

The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward

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