mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 15:10:03 +00:00
6 lines
284 B
TypeScript
6 lines
284 B
TypeScript
/**
|
|
* Throws an error if the condition is not met in development mode.
|
|
* This is used to make development a better experience to provide guidance as
|
|
* to where the error comes from.
|
|
*/
|
|
export declare function invariant(condition: boolean, message: string | (() => string)): void;
|