Skip to main content
Module

x/zod/index.ts>z.objectUtil.extendShape

TypeScript-first schema validation with static type inference
Extremely Popular
Latest
type alias z.objectUtil.extendShape
import { type z } from "https://deno.land/x/zod@v3.23.8/index.ts";
const { extendShape } = z.objectUtil;

Type Parameters

A extends object
B extends object
definition: [K in keyof Ain keyof K extends keyof B ? never : K]: A[K] & [K in keyof B]: B[K]