DefinitelyTyped/object-diff/index.d.ts
Rogier Schouten b006daa1c6 Add typings for object-diff. (#11984)
* Add typings for object-diff.

* review comment

* review comment - tsconfig.json

* fix tsc errors
2016-11-07 06:24:21 -08:00

8 lines
288 B
TypeScript

// Type definitions for object-diff v0.0
// Project: https://github.com/srcagency/object-diff
// Definitions by: Rogier Schouten <https://github.com/rogierschouten>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare function diff(a: any, b: any): any;
export = diff;