Skip to main content
Module

x/zod/mod.ts>ZodObject#extend

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

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>