mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
* [@types/json-diff] add definition for json-diff * remove blank lines * update header * remove blank lines Co-authored-by: wchtommy20013 <wchtommy20013@gmail.com>
8 lines
327 B
TypeScript
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;
|