Rocky_Mountain_Vending/.pnpm-store/v10/files/a5/0413d22a4f818151c5caed22c23748d77e01018500209c37816a8928105b71863700600980433ef6aa11cc6e474f2ba49564d3137d822218c4ce72fcf6496c
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

13 lines
464 B
Text

import { type NextIncomingMessage } from '../request-meta';
type PatchableResponse = {
setHeader(key: string, value: string | string[]): PatchableResponse;
};
/**
* Ensure cookies set in middleware are merged and not overridden by API
* routes/getServerSideProps.
*
* @param req Incoming request
* @param res Outgoing response
*/
export declare function patchSetHeaderWithCookieSupport(req: NextIncomingMessage, res: PatchableResponse): void;
export {};