Rocky_Mountain_Vending/.pnpm-store/v10/files/3f/18af81f78c6d2bbe3956c3650a7b02a0fb0bb16de5da4a8ce2a6c3664d97048650d3fb6da17b964327256861d3103ae992763d7afe51475ab919d7a4225850
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

6 lines
317 B
Text

import { type TestRequestReader } from './context';
type Fetch = typeof fetch;
export declare const reader: TestRequestReader<Request>;
export declare function handleFetch(originalFetch: Fetch, request: Request): Promise<Response>;
export declare function interceptFetch(originalFetch: Fetch): () => void;
export {};