Rocky_Mountain_Vending/.pnpm-store/v10/files/e5/a233a69b0e987cd38ddd47464ae4fa7c1f29cbeba1f881957c5d3d98a8f07ec38c24d948d210a8e8240b66a4aceea28fc755b39284c487c56107eab8338ac4
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
205 B
Text

import type { ProxyServer } from './types';
import type { FetchHandler } from './fetch-api';
export declare function createProxyServer({ onFetch, }: {
onFetch?: FetchHandler;
}): Promise<ProxyServer>;