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