Skip to main content
Module

x/zod/index.ts>z.ZodFormattedError

TypeScript-first schema validation with static type inference
Extremely Popular
Go to Latest
type alias z.ZodFormattedError
import { type z } from "https://deno.land/x/zod@v3.13.4/index.ts";
const { ZodFormattedError } = z;
definition: { _errors: string[]; } & (T extends [any, ...any[]] ? [K in keyof T]?: ZodFormattedError<T[K]> : T extends any[] ? ZodFormattedError<T[number]>[] : T extends object ? [K in keyof T]?: ZodFormattedError<T[K]> : unknown)