mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
457 B
TypeScript
11 lines
457 B
TypeScript
// Type definitions for json-merge-patch
|
|
// Project: https://github.com/pierreinglebert/json-merge-patch
|
|
// Definitions by: Arsenij Schuetzer <https://github.com/senyaarseniy>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
declare module "json-merge-patch" {
|
|
function apply(target: Object, patch: Object): Object;
|
|
function generate(before: Object, after: Object): Object;
|
|
function merge(patch1: Object, patch2: Object): Object;
|
|
} |