1 | # Installation
|
2 | > `npm install --save @types/deep-equal`
|
3 |
|
4 | # Summary
|
5 | This package contains type definitions for deep-equal (https://github.com/substack/node-deep-equal).
|
6 |
|
7 | # Details
|
8 | Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/deep-equal.
|
9 | ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/deep-equal/index.d.ts)
|
10 | ````ts
|
11 | interface DeepEqualOptions {
|
12 | strict: boolean;
|
13 | }
|
14 |
|
15 | declare function deepEqual(
|
16 | actual: any,
|
17 | expected: any,
|
18 | opts?: DeepEqualOptions,
|
19 | ): boolean;
|
20 |
|
21 | export = deepEqual;
|
22 |
|
23 | ````
|
24 |
|
25 | ### Additional Details
|
26 | * Last updated: Mon, 06 Nov 2023 22:41:05 GMT
|
27 | * Dependencies: none
|
28 |
|
29 | # Credits
|
30 | These definitions were written by [remojansen](https://github.com/remojansen), and [Jay Anslow](https://github.com/janslow).
|
31 |
|
\ | No newline at end of file |