UNPKG

552 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8/**
9 * Extends an object with the *enumerable* and *own* properties of one or more source objects,
10 * similar to Object.assign.
11 *
12 * @param dest The object which will have properties copied to it.
13 * @param sources The source objects from which properties will be copied.
14 */
15export declare function extendObject(dest: any, ...sources: any[]): any;