Skip to main content
Module

x/zod/mod.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.6/mod.ts";
const { extendShape } = z.objectUtil;

Type Parameters

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