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>MergeAllMaps

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

Merge all sets types definitions from keys present in both objects

Type Parameters

T
U
optional
X = PartialByType<T, Map<unknown, unknown>>
optional
Y = PartialByType<U, Map<unknown, unknown>>
optional
Z = [K in keyof X & keyof Y]: Map<MapKeyType<X[K]> | MapKeyType<Y[K]>, MapValueType<X[K]> | MapValueType<Y[K]>>
definition: Z