mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +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;
|