Rocky_Mountain_Vending/.pnpm-store/v10/files/ae/8675100ee35345e9d80335b217a15dfa4bf286dd279bd674498c6febacb78beeeb88fa8b5081e9fbb5282c7272bb338ba1ebbb1d7cadd49c4abcb4e5e33f56
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

16 lines
1.2 KiB
Text

import type { Segment as FlightRouterStateSegment } from '../app-router-types';
type Opaque<K, T> = T & {
__brand: K;
};
export type SegmentRequestKeyPart = Opaque<'SegmentRequestKeyPart', string>;
export type SegmentRequestKey = Opaque<'SegmentRequestKey', string>;
export type SegmentCacheKeyPart = Opaque<'SegmentCacheKeyPart', string>;
export type SegmentCacheKey = Opaque<'SegmentCacheKey', string>;
export declare const ROOT_SEGMENT_REQUEST_KEY: SegmentRequestKey;
export declare const ROOT_SEGMENT_CACHE_KEY: SegmentCacheKey;
export declare function createSegmentRequestKeyPart(segment: FlightRouterStateSegment): SegmentRequestKeyPart;
export declare function appendSegmentRequestKeyPart(parentRequestKey: SegmentRequestKey, parallelRouteKey: string, childRequestKeyPart: SegmentRequestKeyPart): SegmentRequestKey;
export declare function createSegmentCacheKeyPart(requestKeyPart: SegmentRequestKeyPart, segment: FlightRouterStateSegment): SegmentCacheKeyPart;
export declare function appendSegmentCacheKeyPart(parentSegmentKey: SegmentCacheKey, parallelRouteKey: string, childCacheKeyPart: SegmentCacheKeyPart): SegmentCacheKey;
export declare function convertSegmentPathToStaticExportFilename(segmentPath: string): string;
export {};