// Type definitions for utils-merge // Project: https://github.com/jaredhanson/utils-merge // Definitions by: Ilya Mochalov // Definitions: https://github.com/borisyankov/DefinitelyTyped declare module "utils-merge" { function merge(a: TA, b: TB): TResult; export default merge; }