Skip to main content
Module

x/zod/types.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.21.1/types.ts";

Type Parameters

Mask extends objectKeyMask<T>

Parameters

mask: noUnrecognized<Mask, T>

Returns

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