UNPKG

@mui/x-internals

Version:

Utility functions for the MUI X packages (internal use only).

5 lines 192 B
/** * Fast shallow compare for objects. * @returns true if objects are equal. */ export declare function fastObjectShallowCompare<T extends Record<string, any> | null>(a: T, b: T): boolean;