react-instantsearch-nextjs
Version:
React InstantSearch SSR utilities for Next.js
11 lines (10 loc) • 305 B
TypeScript
type WarnCache = {
current: Record<string, boolean>;
};
export declare const warnCache: WarnCache;
/**
* 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;
export {};