Files
DefinitelyTyped/utils-merge/index.d.ts
2016-04-27 21:30:22 -07:00

10 lines
310 B
TypeScript

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