DefinitelyTyped/types/json-diff/index.d.ts
wchtommy20013 a3c7397a28
[@types/json-diff] add definition for json-diff (#44971)
* [@types/json-diff] add definition for json-diff

* remove blank lines

* update header

* remove blank lines

Co-authored-by: wchtommy20013 <wchtommy20013@gmail.com>
2020-05-27 18:07:07 -07:00

8 lines
327 B
TypeScript

// Type definitions for json-diff 0.5
// Project: https://github.com/andreyvit/json-diff
// Definitions by: Tommy Wong <https://github.com/wchtommy20013/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export function diff(obj1: any, obj2: any): any;
export function diffString(obj1: any, obj2: any): any;