Rocky_Mountain_Vending/.pnpm-store/v10/files/ff/e067c10be41c6f5661b728245b0d77d0fadcda345dba330598f012cbdd2094f998b14aa6e9d1e4e887a77540a8274d321cb7c6dd44a2b5ff65417140ed1d8d
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

24 lines
773 B
Text

import '../build/polyfills/polyfill-module';
import type Router from '../shared/lib/router/router';
import type { MittEmitter } from '../shared/lib/mitt';
import type { NEXT_DATA } from '../shared/lib/utils';
declare global {
interface Window {
__NEXT_HYDRATED?: boolean;
__NEXT_HYDRATED_AT?: number;
__NEXT_HYDRATED_CB?: () => void;
__NEXT_DATA__: NEXT_DATA;
__NEXT_P: any[];
}
}
export declare const version: string | undefined;
export declare let router: Router;
export declare const emitter: MittEmitter<string>;
export declare function initialize(opts?: {
devClient?: any;
}): Promise<{
assetPrefix: string;
}>;
export declare function hydrate(opts?: {
beforeRender?: () => Promise<void>;
}): Promise<void>;