Rocky_Mountain_Vending/.pnpm-store/v10/files/f9/8962bf0d232cab2fdf60a2100bc8f919a0e0c5140219f2f292552ffd69d6fee9395b00c5361e5c53286b6e22fca2c1aace9511f0c13e1285d9909773785ea4
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

47 lines
1.7 KiB
Text

import type { ComponentType } from 'react';
import type { ProxyMatcher } from '../build/analysis/get-page-static-info';
declare global {
interface Window {
__BUILD_MANIFEST?: Record<string, string[]>;
__BUILD_MANIFEST_CB?: Function;
__MIDDLEWARE_MATCHERS?: ProxyMatcher[];
__MIDDLEWARE_MANIFEST_CB?: Function;
__REACT_LOADABLE_MANIFEST?: any;
__DYNAMIC_CSS_MANIFEST?: any;
__RSC_MANIFEST?: any;
__RSC_SERVER_MANIFEST?: any;
__NEXT_FONT_MANIFEST?: any;
__SUBRESOURCE_INTEGRITY_MANIFEST?: string;
__INTERCEPTION_ROUTE_REWRITE_MANIFEST?: string;
}
}
interface LoadedEntrypointSuccess {
component: ComponentType;
exports: any;
}
interface LoadedEntrypointFailure {
error: unknown;
}
type RouteEntrypoint = LoadedEntrypointSuccess | LoadedEntrypointFailure;
interface RouteStyleSheet {
href: string;
content: string;
}
interface LoadedRouteSuccess extends LoadedEntrypointSuccess {
styles: RouteStyleSheet[];
}
interface LoadedRouteFailure {
error: unknown;
}
type RouteLoaderEntry = LoadedRouteSuccess | LoadedRouteFailure;
export interface RouteLoader {
whenEntrypoint(route: string): Promise<RouteEntrypoint>;
onEntrypoint(route: string, execute: () => unknown): void;
loadRoute(route: string, prefetch?: boolean): Promise<RouteLoaderEntry>;
prefetch(route: string): Promise<void>;
}
export declare function markAssetError(err: Error): Error;
export declare function isAssetError(err?: Error): boolean | undefined;
export declare function getClientBuildManifest(): Promise<Record<string, string[]>>;
export declare function createRouteLoader(assetPrefix: string): RouteLoader;
export {};