Skip to main content
Module

x/zod/index.ts>mergeTypes

TypeScript-first schema validation with static type inference
Very Popular
Go to Latest
type alias mergeTypes
import { type mergeTypes } from "https://deno.land/x/zod@v3.21.4/index.ts";
definition: [k in keyof A | keyof B]: k extends keyof B ? B[k] : k extends keyof A ? A[k] : never