Rocky_Mountain_Vending/.pnpm-store/v10/files/a9/4224c6a593324a19a2e0c27db78c5ecc3c49d929df207500897acf2dc32f7c19fe208bc82a83b40c2553c3e96012b98e20a9452dfa373f702a4fbf6c833deb
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
558 B
Text

import type { FlightRouterState, FlightSegmentPath } from '../../../shared/lib/app-router-types';
/**
* Apply the router state from the Flight response, but skip patching default segments.
* Useful for patching the router cache when navigating, where we persist the existing default segment if there isn't a new one.
* Creates a new router state tree.
*/
export declare function applyRouterStatePatchToTree(flightSegmentPath: FlightSegmentPath, flightRouterState: FlightRouterState, treePatch: FlightRouterState, path: string): FlightRouterState | null;