Rocky_Mountain_Vending/.pnpm-store/v10/files/5e/b68cf78d1b7121150c414fb126876a1c935e76c684d4bf202bbf9a20269a8e68e80c449011023d93b1c1d575f1930a679ff02c436891cc4f669667de9c7c1d
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

4 lines
291 B
Text

import type { IncomingMessage, ServerResponse } from 'http';
import type { Duplex } from 'stream';
export type WorkerRequestHandler = (req: IncomingMessage, res: ServerResponse) => Promise<any>;
export type WorkerUpgradeHandler = (req: IncomingMessage, socket: Duplex, head: Buffer) => any;