OptionalarrayMergeMode?: ArrayMergeModeMerge mode for array and tuple.
When we walk through the properties of the objects and the same key is found and both are array or tuple, a merge mode must be chosen:
replace: Replaces the destination value by the source value. This is the default mode.spread: Spreads the destination and the source values.See MergeDeep for usages and examples.
Note: Top-level arrays and tuples are always spread.
OptionalrecurseIntoArrays?: booleanWhether to affect the individual elements of arrays and tuples.
If this option is set to true the following rules are applied:
MergeDeep options.