DefinitelyTyped/types/shallowequal/index.d.ts
2017-03-24 14:27:52 -07:00

10 lines
440 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 module 'shallowequal' {
function shallowEqual(objA: any, objB: any, compare?: (objA: any, objB: any, indexOrKey?: number | string) => boolean, compareContext?: any): boolean;
export = shallowEqual;
}