Rocky_Mountain_Vending/.pnpm-store/v10/files/87/afc93f03fe04e4b5e26d3f41e078dec627d4a3d4aab7dd4967282abaf645f8a69111695093587bdd0007002e60fddff25a23de6e82b3fb5689aeb61d1aa5e6
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

11 lines
537 B
Text

import type { IncomingMessage } from 'http';
import type { BaseNextRequest } from '../base-http';
import type { NextRequest } from '../web/exports';
export declare function getServerActionRequestMetadata(req: IncomingMessage | BaseNextRequest | NextRequest): {
actionId: string | null;
isURLEncodedAction: boolean;
isMultipartAction: boolean;
isFetchAction: boolean;
isPossibleServerAction: boolean;
};
export declare function getIsPossibleServerAction(req: IncomingMessage | BaseNextRequest | NextRequest): boolean;