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

x/deepmergets/dist/deno/types/index.ts>DeepMergeIntoFunctionUtils

Deeply merge 2 or more objects respecting type information.
Latest
type alias DeepMergeIntoFunctionUtils
import { type DeepMergeIntoFunctionUtils } from "https://deno.land/x/deepmergets@v7.0.3/dist/deno/types/index.ts";

The utils provided to the merge functions.

definition: Readonly<{ mergeFunctions: DeepMergeIntoFunctions<M, MM>; defaultMergeFunctions: MergeIntoFunctions; metaDataUpdater: MetaDataUpdater<M, MM>; deepmergeInto: <Target extends object, Ts extends ReadonlyArray<unknown>>(target: Target, ...values: Ts) => void; filterValues: DeepMergeUtilityFunctions<M>["filterValues"] | undefined; actions: Readonly<{ defaultMerge: symbol; }>; }>