mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
443 B
TypeScript
16 lines
443 B
TypeScript
// Type definitions for deep-equal 1.0
|
|
// Project: https://github.com/substack/node-deep-equal
|
|
// Definitions by: remojansen <https://github.com/remojansen>, Jay Anslow <https://github.com/janslow>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
interface DeepEqualOptions {
|
|
strict: boolean;
|
|
}
|
|
|
|
declare function deepEqual(
|
|
actual: any,
|
|
expected: any,
|
|
opts?: DeepEqualOptions): boolean;
|
|
|
|
export = deepEqual;
|