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

x/deepmergets/dist/deno/index.ts>DeepMergeMergeIntoFunctionUtils

Deeply merge 2 or more objects respecting type information.
Go to Latest
type alias DeepMergeMergeIntoFunctionUtils
import { type DeepMergeMergeIntoFunctionUtils } from "https://deno.land/x/deepmergets@v5.1.0/dist/deno/index.ts";

The utils provided to the merge functions.

definition: Readonly<{ mergeFunctions: DeepMergeMergeIntoFunctions<M, MM>; defaultMergeFunctions: MergeIntoFunctions; metaDataUpdater: MetaDataUpdater<M, MM>; deepmergeInto: <Target extends object, Ts extends ReadonlyArray<unknown>>(target: Target, ...values: Ts) => void; actions: Readonly<{ defaultMerge: symbol; }>; }>