// Type definitions for deep-equal 1.0 // Project: https://github.com/substack/node-deep-equal // Definitions by: remojansen , Jay Anslow // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped interface DeepEqualOptions { strict: boolean; } declare function deepEqual( actual: any, expected: any, opts?: DeepEqualOptions): boolean; export = deepEqual;