Rocky_Mountain_Vending/.pnpm-store/v10/files/fb/93d90816d8aebe16cf6631cea5a425f4a787a2908d806a2d1654d9ec4c6f40677834c6df95a5a699d140728584e296ffc66d9e8d131cf6f834ee4ca6797bbb
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

28 lines
876 B
Text

import type { TurbopackMessage } from '../../../server/dev/hot-reloader-types';
declare global {
interface Window {
__NEXT_HMR_TURBOPACK_REPORT_NOISY_NOOP_EVENTS: boolean | undefined;
}
}
interface HmrUpdate {
hasUpdates: boolean;
updatedModules: Set<string>;
startMsSinceEpoch: number;
endMsSinceEpoch: number;
}
export declare class TurbopackHmr {
#private;
constructor();
onBuilding(): void;
onTurbopackMessage(msg: TurbopackMessage): void;
onServerComponentChanges(): void;
onReloadPage(): void;
onPageAddRemove(): void;
/**
* @returns `null` if the caller should ignore the update entirely. Returns an
* object with `hasUpdates: false` if the caller should report the end of
* the HMR in the browser console, but the HMR was a no-op.
*/
onBuilt(): HmrUpdate | null;
}
export {};