1 | // Type definitions for merge-descriptors 1.0
|
2 | // Project: https://github.com/component/merge-descriptors
|
3 | // Definitions by: Zhiyuan Wang <https://github.com/danny8002>
|
4 | // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
5 |
|
6 | declare function merge(destination: Object, source: Object, redefine?: boolean): Object;
|
7 | export = merge;
|