Rocky_Mountain_Vending/.pnpm-store/v10/files/d5/74905a7affdb6339a36074438d473b7a6c01e4c037137f8ffadeaf4224452a7bb192a5dedcd47211723a5b116615f9584bcbaec8120e60a219974b5a1f2780
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

9 lines
420 B
Text

import type { BaseNextRequest, BaseNextResponse } from './base-http';
/**
* Sends the response on the underlying next response object.
*
* @param req the underlying request object
* @param res the underlying response object
* @param response the response to send
*/
export declare function sendResponse(req: BaseNextRequest, res: BaseNextResponse, response: Response, waitUntil?: Promise<unknown>): Promise<void>;