blockly
Version:
Blockly is a library for building visual programming editors.
17 lines • 482 B
TypeScript
/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Complete a deep merge of all members of a source object with a target object.
*
* N.B. This is not a very sophisticated merge algorithm and does not
* handle complex cases. Use with caution.
*
* @param target Target.
* @param source Source.
* @returns The resulting object.
*/
export declare function deepMerge(target: any, source: any): any;
//# sourceMappingURL=object.d.ts.map