Skip to main content
Module

x/zod/index.ts>z.ZodFirstPartySchemaTypes

TypeScript-first schema validation with static type inference
Extremely Popular
Go to Latest
type alias z.ZodFirstPartySchemaTypes
import { type z } from "https://deno.land/x/zod@v3.21.4/index.ts";
const { ZodFirstPartySchemaTypes } = z;
definition:
| ZodArray<any, any>
| ZodObject<any, any, any>
| ZodUnion<any>
| ZodIntersection<any, any>
| ZodTuple<any, any>
| ZodRecord<any, any>
| ZodMap<any>
| ZodSet<any>
| ZodFunction<any, any>
| ZodLazy<any>
| ZodLiteral<any>
| ZodEnum<any>
| ZodEffects<any, any, any>
| ZodOptional<any>
| ZodNullable<any>
| ZodDefault<any>
| ZodCatch<any>
| ZodPromise<any>
| ZodBranded<any, any>
| ZodPipeline<any, any>