UNPKG

@types/json-merge-patch

Version:
32 lines (24 loc) 1.12 kB
# Installation > `npm install --save @types/json-merge-patch` # Summary This package contains type definitions for json-merge-patch (https://github.com/pierreinglebert/json-merge-patch). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-merge-patch. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-merge-patch/index.d.ts) ````ts declare module "json-merge-patch" { function apply(target: any, patch: null): null; function apply<U>(target: any, patch: U): U; function apply<T>(target: T, patch: T): T; function generate(before: any, after: null): null; function generate<U>(before: any, after: U): U | undefined; function generate<T>(before: T, after: T): T | undefined; function merge(patch1: any, patch2: null): null; function merge<T>(patch1: T, patch2: T): T; } ```` ### Additional Details * Last updated: Tue, 17 Sep 2024 18:09:19 GMT * Dependencies: none # Credits These definitions were written by [Jimmy Leung](https://github.com/jimmy-leung-coherent).