# Installation
> `npm install --save @types/is-equal-shallow`

# Summary
This package contains type definitions for is-equal-shallow (https://github.com/jonschlinkert/is-equal-shallow).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/is-equal-shallow.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/is-equal-shallow/index.d.ts)
````ts
/**
 * Performs a shallow comparison between two objects.
 *
 * @param a - The first object to compare
 * @param b - The second object to compare
 * @returns `true` if the objects have identical top-level property values, otherwise `false`
 */
declare function isEqual(a: object, b: object): boolean;

export = isEqual;

````

### Additional Details
 * Last updated: Wed, 16 Apr 2025 08:02:19 GMT
 * Dependencies: none

# Credits
These definitions were written by [Laurens Tobias](https://github.com/akeldamas).
