Rocky_Mountain_Vending/.pnpm-store/v10/files/f3/73549972fec7b81dcd754a3a5f9b080662702c38a0c2fc3db2f6bc59806b1a6d4c6ce79742e51b13d3a0c60a5f5228984369df3993d4ba7ab93e9823c67af9
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
403 B
Text

import type { IncomingMessage, ServerResponse } from 'http';
import send from 'next/dist/compiled/send';
export declare function serveStatic(req: IncomingMessage, res: ServerResponse, path: string, opts?: Parameters<typeof send>[2]): Promise<void>;
export declare const getContentType: (extWithoutDot: string) => string | null;
export declare const getExtension: (contentType: string) => string | null;