@nlabs/lex
Version:
12 lines (11 loc) • 423 B
TypeScript
/**
* Copyright (c) 2018-Present, Nitrogen Labs, Inc.
* Copyrights licensed under the MIT License. See the accompanying LICENSE file for terms.
*/
/**
* Deep merge function that recursively merges objects and arrays
* @param target - The target object to merge into
* @param source - The source object to merge from
* @returns The merged object
*/
export declare const deepMerge: (target: any, source: any) => any;