UNPKG

@n1ru4l/json-patch-plus

Version:

This is a slimmed version of [jsondiffpatch](https://github.com/benjamine/jsondiffpatch). All the code is taken from the [jsondiffpatch](https://github.com/benjamine/jsondiffpatch) repository, slimmed down, slightly altered and converted to TypeScript.

6 lines (5 loc) 146 B
import type { Delta } from "./types.js"; export declare function patch<TLeft extends any>(params: { left: TLeft; delta: Delta; }): TLeft;