Skip to main content
Module

x/zod/mod.ts>z.ZodTransformer

TypeScript-first schema validation with static type inference
Extremely Popular
Go to Latest
class z.ZodTransformer
import { z } from "https://deno.land/x/zod@v3.18.0/mod.ts";
const { ZodTransformer } = z;

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"]>