mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-26 02:32:49 +00:00
11 lines
461 B
TypeScript
11 lines
461 B
TypeScript
// Type definitions for shallowequal v0.2.2
|
|
// Project: https://github.com/dashed/shallowequal
|
|
// Definitions by: Sean Kelley <https://github.com/seansfkelley>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function shallowEqual(objA: any, objB: any, compare?: (objA: any, objB: any, indexOrKey?: number | string) => (boolean | undefined), compareContext?: any): boolean;
|
|
|
|
declare namespace shallowEqual { }
|
|
|
|
export = shallowEqual;
|