Rocky_Mountain_Vending/.pnpm-store/v10/files/ee/5614eb8a02db1f88162ba78e86ff8462e5ab68b675bc31c3fafd611e6da68009479a0f2f1b1e51ad616d2a2164d72b4b27edc9a6c083709caf01ce0d76fb72
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

9 lines
401 B
Text

import { type HmrMessageSentToBrowser } from '../../../../server/dev/hot-reloader-types';
type MessageCallback = (message: HmrMessageSentToBrowser) => void;
export declare function addMessageListener(callback: MessageCallback): void;
export declare function sendMessage(data: string): void;
export declare function connectHMR(options: {
path: string;
assetPrefix: string;
}): void;
export {};