Rocky_Mountain_Vending/.pnpm-store/v10/files/f5/70e4d40d96b549cdcd810a9132a26adae92184c8baa606c9e96e4317c782c310d5592a6cdcdec079d1fcb0d932eaffdfea51a2b96149a17e66fdac598cf87b
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

9 lines
518 B
Text

import type { ActionManifest } from '../../build/webpack/plugins/flight-client-entry-plugin';
export declare function createServerModuleMap({ serverActionsManifest, }: {
serverActionsManifest: ActionManifest;
}): {};
/**
* Checks if the requested action has a worker for the current page.
* If not, it returns the first worker that has a handler for the action.
*/
export declare function selectWorkerForForwarding(actionId: string, pageName: string, serverActionsManifest: ActionManifest): string | undefined;