Module

x/zod/mod.ts>z.ZodObject#extend

TypeScript-first schema validation with static type inference
Extremely Popular
Go to Latest
method z.ZodObject.prototype.extend
import { z } from "https://dotland.deno.dev/x/zod@v3.20.4/mod.ts";
const { ZodObject } = z;

Type Parameters

Augmentation extends ZodRawShape
NewOutput extends util.flatten<[k in keyof Augmentation | keyof Output]: k extends keyof Augmentation ? Augmentation[k]["_output"] : k extends keyof Output ? Output[k] : never>
NewInput extends util.flatten<[k in keyof Augmentation | keyof Input]: k extends keyof Augmentation ? Augmentation[k]["_input"] : k extends keyof Input ? Input[k] : never>