Rocky_Mountain_Vending/.pnpm-store/v10/files/65/779935956ed82b3d66b4cf12cbe494557b96e9cfb521981231eb1eefa86916158e2f1718e4611dcd3a7286180ecdd5be88ebbb092e2fa6fec58caf9e6a5d44
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

5 lines
393 B
Text

import type { WorkerRequestHandler } from '../../server/lib/types';
import type { NodeRequestHandler } from '../../server/next-server';
export declare function interceptTestApis(): () => void;
export declare function wrapRequestHandlerWorker(handler: WorkerRequestHandler): WorkerRequestHandler;
export declare function wrapRequestHandlerNode(handler: NodeRequestHandler): NodeRequestHandler;