mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboViteDocs.git
synced 2026-06-15 19:36:24 +00:00
9 lines
245 B
TypeScript
9 lines
245 B
TypeScript
export declare const warnCache: {
|
|
current: {};
|
|
};
|
|
/**
|
|
* Logs a warning if the condition is not met.
|
|
* This is used to log issues in development environment only.
|
|
*/
|
|
export declare function warn(condition: boolean, message: string): void;
|