UNPKG

jsondiffpatch

Version:

JSON diff & patch (object and array diff, text diff, multiple output formats)

11 lines (10 loc) 287 B
import type { Delta } from "../types.js"; import Context from "./context.js"; declare class PatchContext extends Context<unknown> { left: unknown; delta: Delta; pipe: "patch"; nested?: boolean; constructor(left: unknown, delta: Delta); } export default PatchContext;