mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
11 lines
336 B
TypeScript
11 lines
336 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 module "utils-merge" {
|
|
function merge<TA, TB, TResult>(a: TA, b: TB): TResult;
|
|
|
|
export default merge;
|
|
}
|