Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/zod/index.ts>ZodObject#pick

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

Type Parameters

Mask extends [k in keyof T]?: true

Returns

ZodObject<Pick<T, Extract<keyof T, keyof Mask>>, UnknownKeys, Catchall>