Files
ETB/ETB-FrontEnd/node_modules/@mui/x-internals/esm/warning/warning.d.ts
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

13 lines
510 B
TypeScript

/**
* Logs a message to the console on development mode. The warning will only be logged once.
*
* The message is the log's cache key. Two identical messages will only be logged once.
*
* This function is a no-op in production.
*
* @param message the message to log
* @param gravity the gravity of the warning. Defaults to `'warning'`.
* @returns
*/
export declare function warnOnce(message: string | string[], gravity?: 'warning' | 'error'): void;
export declare function clearWarningsCache(): void;