UNPKG

179 BTypeScriptView Raw
1interface DeepEqualOptions {
2 strict: boolean;
3}
4
5declare function deepEqual(
6 actual: any,
7 expected: any,
8 opts?: DeepEqualOptions,
9): boolean;
10
11export = deepEqual;