UNPKG

443 BTypeScriptView Raw
1// Type definitions for deep-equal 1.0
2// Project: https://github.com/substack/node-deep-equal
3// Definitions by: remojansen <https://github.com/remojansen>, Jay Anslow <https://github.com/janslow>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6interface DeepEqualOptions {
7 strict: boolean;
8}
9
10declare function deepEqual(
11 actual: any,
12 expected: any,
13 opts?: DeepEqualOptions): boolean;
14
15export = deepEqual;