Skip to main content
Module

x/fathym_common/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.179/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