Skip to main content
Module

x/zod/mod.ts>ZodEffects

TypeScript-first schema validation with static type inference
Very Popular
Go to Latest
class ZodEffects
import { ZodEffects } from "https://deno.land/x/zod@v3.17.3/mod.ts";

Type Parameters

T extends ZodTypeAny
optional
Output = T["_output"]
optional
Input = T["_input"]

Static Properties

create: <I extends ZodTypeAny>(
schema: I,
effect: Effect<I["_output"]>,
params?: RawCreateParams,
) => ZodEffects<I, I["_output"]>
createWithPreprocess: <I extends ZodTypeAny>(
preprocess: (arg: unknown) => unknown,
schema: I,
params?: RawCreateParams,
) => ZodEffects<I, I["_output"]>