1
0
Fork 0
react-playground/node_modules/@mui/x-internals/fastObjectShallowCompare/fastObjectShallowCompare.d.ts
Techognito fc0f69dacb Added Statistics calculation
Statistics now show calculated values
2025-09-04 17:30:00 +02:00

5 lines
No EOL
192 B
TypeScript

/**
* 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;