2017-03-07 11:11:45 +00:00
|
|
|
// Type definitions for deep-equal 1.0
|
2016-03-03 12:42:33 +00:00
|
|
|
// Project: https://github.com/substack/node-deep-equal
|
2017-08-17 21:53:41 +00:00
|
|
|
// Definitions by: remojansen <https://github.com/remojansen>, Jay Anslow <https://github.com/janslow>
|
2016-03-16 15:31:58 +00:00
|
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
2016-03-03 12:42:33 +00:00
|
|
|
|
2016-04-22 21:12:45 +00:00
|
|
|
interface DeepEqualOptions {
|
|
|
|
|
strict: boolean;
|
|
|
|
|
}
|
2016-03-03 12:42:33 +00:00
|
|
|
|
2017-03-07 11:11:45 +00:00
|
|
|
declare function deepEqual(
|
2017-03-07 10:49:59 +00:00
|
|
|
actual: any,
|
|
|
|
|
expected: any,
|
2017-03-07 11:11:45 +00:00
|
|
|
opts?: DeepEqualOptions): boolean;
|
2016-04-22 21:12:45 +00:00
|
|
|
|
|
|
|
|
export = deepEqual;
|