Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

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

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

Type Parameters

Key extends string
Schema extends ZodTypeAny

Parameters

key: Key
schema: Schema

Returns

ZodObject<T & [k in Key]: Schema, UnknownKeys, Catchall>