warn.d.ts 245 B

12345678
  1. export declare const warnCache: {
  2. current: {};
  3. };
  4. /**
  5. * Logs a warning if the condition is not met.
  6. * This is used to log issues in development environment only.
  7. */
  8. export declare function warn(condition: boolean, message: string): void;