mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 15:10:03 +00:00
8 lines
245 B
TypeScript
8 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;
|