Rocky_Mountain_Vending/.pnpm-store/v10/files/da/fbca278ccda68ad9ce41e148780bf5461c8ee26b8db55a009bf3a9ffbcfddb0cd839d101be9a8daa9fc39334b6665ec317328aa9932589fc7b3401732d5711
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
1.2 KiB
Text

import type { DynamicParamTypesShort, HeadData, LoadingModuleData } from '../../shared/lib/app-router-types';
import type { ManifestNode } from '../../build/webpack/plugins/flight-manifest-plugin';
import { type SegmentRequestKey } from '../../shared/lib/segment-cache/segment-value-encoding';
export type RootTreePrefetch = {
buildId: string;
tree: TreePrefetch;
head: HeadData;
isHeadPartial: boolean;
staleTime: number;
};
export type TreePrefetch = {
name: string;
paramType: DynamicParamTypesShort | null;
paramKey: string | null;
slots: null | {
[parallelRouteKey: string]: TreePrefetch;
};
/** Whether this segment should be fetched using a runtime prefetch */
hasRuntimePrefetch: boolean;
isRootLayout: boolean;
};
export type SegmentPrefetch = {
buildId: string;
rsc: React.ReactNode | null;
loading: LoadingModuleData | Promise<LoadingModuleData>;
isPartial: boolean;
};
export declare function collectSegmentData(isCacheComponentsEnabled: boolean, fullPageDataBuffer: Buffer, staleTime: number, clientModules: ManifestNode, serverConsumerManifest: any): Promise<Map<SegmentRequestKey, Buffer>>;