Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
616 B
Text
15 lines
616 B
Text
import type { CacheIndicatorState } from '../../cache-indicator';
|
|
export declare enum Status {
|
|
None = "none",
|
|
Rendering = "rendering",
|
|
Compiling = "compiling",
|
|
Prerendering = "prerendering",
|
|
CacheBypassing = "cache-bypassing"
|
|
}
|
|
export declare function getCurrentStatus(buildingIndicator: boolean, renderingIndicator: boolean, cacheIndicator: CacheIndicatorState): Status;
|
|
interface StatusIndicatorProps {
|
|
status: Status;
|
|
onClick?: () => void;
|
|
}
|
|
export declare function StatusIndicator({ status, onClick }: StatusIndicatorProps): import("react/jsx-runtime").JSX.Element | null;
|
|
export {};
|