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>
9 lines
420 B
Text
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>;
|