jsondiffpatch
Version:
JSON diff & patch (object and array diff, text diff, multiple output formats)
8 lines (7 loc) • 377 B
TypeScript
import type DiffContext from "../contexts/diff.js";
import type PatchContext from "../contexts/patch.js";
import type ReverseContext from "../contexts/reverse.js";
import type { Filter } from "../types.js";
export declare const diffFilter: Filter<DiffContext>;
export declare const patchFilter: Filter<PatchContext>;
export declare const reverseFilter: Filter<ReverseContext>;