mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
391 B
TypeScript
8 lines
391 B
TypeScript
// Type definitions for object-mapper 6.2
|
|
// Project: https://github.com/wankdanker/node-object-mapper#readme
|
|
// Definitions by: Ryan Fahsel <https://github.com/me>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export function merge(srcObject: object, mapObject: object): object;
|
|
export function merge<T>(srcObject: object, destinationObject: T, mapObject: object): T;
|