Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/zod/mod.ts>objectUtil.extendShape

TypeScript-first schema validation with static type inference
Extremely Popular
Latest
type alias objectUtil.extendShape
import { type objectUtil } from "https://deno.land/x/zod@v3.23.8/mod.ts";
const { extendShape } = 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]