UNPKG

@grnsft/if-core

Version:

If core utilities.

6 lines (5 loc) 219 B
import { ZodSchema } from 'zod'; /** * Validates given `object` with given `schema`. */ export declare const validate: <T>(schema: ZodSchema<T>, object: any, index?: number, errorConstructor?: ErrorConstructor) => T;