Skip to main content
Module

x/zod/external.ts>util.MakePartial

TypeScript-first schema validation with static type inference
Extremely Popular
Go to Latest
type alias util.MakePartial
import { type util } from "https://deno.land/x/zod@v3.21.4/external.ts";
const { MakePartial } = util;

Type Parameters

T
K extends keyof T
definition: Omit<T, K> & Partial<Pick<T, K>>