UNPKG

@faivform/zod

Version:

Adapter to use Zod with @tuentyfaiv/svelte-form

6 lines (5 loc) 149 B
import type { ZodTypeAny } from "zod"; export interface ZodAdapterConfig<T> { schema: T; resolveDeep(three: ZodTypeAny): null | undefined; }