Rocky_Mountain_Vending/.pnpm-store/v10/files/47/8b2fc954282f61c3353f773e8906e482604cec0a2d5bf204f631952971510ea3b698a30f73c72b56598c0260772ed740fbea8b581af0ca02794ba7098a0d98
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

3 lines
277 B
Text

import type { ServerResponse, IncomingMessage } from 'http';
import type { Telemetry } from '../../telemetry/storage';
export declare function getNextErrorFeedbackMiddleware(telemetry: Telemetry): (req: IncomingMessage, res: ServerResponse, next: () => void) => Promise<void>;