Rocky_Mountain_Vending/.pnpm-store/v10/files/41/21e89468976da1878f49957076400c75d12f746c5a5195d59287ba1257499c5c681c73e5d46ddb8388c9b4d7b89f0f34b048318c8f84c14f6103a3fe2dc8be
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

17 lines
1.1 KiB
Text

import type { ReactNode } from 'react';
import type { HmrMessageSentToBrowser, TurbopackMessageSentToBrowser } from '../../../../server/dev/hot-reloader-types';
import { type GlobalErrorState } from '../../../components/app-router-instance';
export interface StaticIndicatorState {
pathname: string | null;
appIsrManifest: Record<string, boolean> | null;
}
export declare function waitForWebpackRuntimeHotUpdate(): Promise<void>;
export declare function performFullReload(err: any, sendMessage: (data: string) => void): void;
/** Handles messages from the server for the App Router. */
export declare function processMessage(message: HmrMessageSentToBrowser, sendMessage: (message: string) => void, processTurbopackMessage: (msg: TurbopackMessageSentToBrowser) => void, staticIndicatorState: StaticIndicatorState): void;
export default function HotReload({ children, globalError, webSocket, staticIndicatorState, }: {
children: ReactNode;
globalError: GlobalErrorState;
webSocket: WebSocket | undefined;
staticIndicatorState: StaticIndicatorState | undefined;
}): import("react/jsx-runtime").JSX.Element;