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

x/fathym_common/src/src.deps.ts>MergeAllRecords

The Fathym Reference Architecture provides the common foundation for applications built in Typescript.
Go to Latest
type alias MergeAllRecords
import { type MergeAllRecords } from "https://deno.land/x/fathym_common@v0.0.176/src/src.deps.ts";

Merge all records types definitions from keys present in both objects

Type Parameters

T
U
Options
optional
X = PartialByType<T, Record<PropertyKey, unknown>>
optional
Y = PartialByType<U, Record<PropertyKey, unknown>>
optional
Z = [K in keyof X & keyof Y]: DeepMerge<X[K], Y[K], Options>
definition: Z