Rocky_Mountain_Vending/.pnpm-store/v10/files/11/2ce34ce371f5ca192bb3a032a4197c2483b790458a88223debc03f587897ed49604269732d91f6f920735de9033e3fd4b84d73a5fe0ff71bee0820eae95fc2
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

19 lines
738 B
Text

import './app-globals';
type FlightSegment = [isBootStrap: 0] | [isNotBootstrap: 1, responsePartial: string] | [isFormState: 2, formState: any] | [isBinary: 3, responseBase64Partial: string];
type NextFlight = Omit<Array<FlightSegment>, 'push'> & {
push: (seg: FlightSegment) => void;
};
declare global {
interface Window {
/**
* request ID, dev-only
*/
__next_r?: string;
__next_f: NextFlight;
}
}
export type ClientInstrumentationHooks = {
onRouterTransitionStart?: (url: string, navigationType: 'push' | 'replace' | 'traverse') => void;
};
export declare function hydrate(instrumentationHooks: ClientInstrumentationHooks | null, assetPrefix: string): Promise<void>;
export {};