mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 21:00:01 +08:00
10 lines
310 B
TypeScript
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;
|