mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
13 lines
413 B
TypeScript
13 lines
413 B
TypeScript
// Type definitions for merge-descriptors
|
|
// Project: https://github.com/component/merge-descriptors
|
|
// Definitions by: Zhiyuan Wang <https://github.com/danny8002/>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
|
|
declare function merge(destination: Object, source: Object): Object;
|
|
|
|
declare function merge(destination: Object, source: Object, redefine: boolean): Object;
|
|
|
|
export = merge;
|