Rocky_Mountain_Vending/.pnpm-store/v10/files/81/6b767b5a54205454f182b891534ecd04afda37cd36a3b417f80f67a08759a273b42b774f92eb51768c6dc790b2d771e0988bddba76596ee492913bcdbcc892
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

7 lines
533 B
Text

import type { CacheNode } from '../../../shared/lib/app-router-types';
import type { NormalizedFlightData } from '../../flight-data-helpers';
/**
* Fill cache with rsc based on flightDataPath
*/
export declare function fillCacheWithNewSubTreeData(navigatedAt: number, newCache: CacheNode, existingCache: CacheNode, flightData: NormalizedFlightData): void;
export declare function fillCacheWithNewSubTreeDataButOnlyLoading(navigatedAt: number, newCache: CacheNode, existingCache: CacheNode, flightData: NormalizedFlightData): void;