Files
igny8/frontend/node_modules/@react-dnd/invariant/dist/index.d.ts
2025-11-09 10:27:02 +00:00

12 lines
458 B
TypeScript

/**
* Use invariant() to assert state which your program assumes to be true.
*
* Provide sprintf-style format (only %s is supported) and arguments
* to provide information about what broke and what you were
* expecting.
*
* The invariant message will be stripped in production, but the invariant
* will remain to ensure logic does not differ in production.
*/
export declare function invariant(condition: any, format: string, ...args: any[]): void;