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>
5 lines
403 B
Text
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;
|