/** * --- * category: utilities/utils * --- * Performs equality by iterating through keys on an object and returning false * when any key has values which are not strictly equal between the arguments. * * @module shallowEqual * * @param {Object} objA * @param {Object} objB * @returns {Boolean} Returns true when the values of all keys are strictly equal */ declare function shallowEqual(objA: Record, objB: Record): boolean; export default shallowEqual; export { shallowEqual }; //# sourceMappingURL=shallowEqual.d.ts.map