UNPKG

smart-json-diff

Version:

A modern, compact JSON comparison library with path-aware output and multiple output modes

7 lines (6 loc) 246 B
import { SmartJsonDiffOptions } from './types'; export declare function diffSummary(a: any, b: any): { totalChanges: number; paths: string[]; }; export declare function hasChanges(a: any, b: any, options?: SmartJsonDiffOptions): boolean;