Rocky_Mountain_Vending/.pnpm-store/v10/files/02/73aed7e1730711bca6cedffcbae5a9528f9c7d2cc4a27a9d470daa2d195261452fddcce4eac994e9b6784b15d3172c40ceb21f366e0e2bd29a89ff5343611b
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

8 lines
273 B
Text

import type { NextApiRequestCookies } from '.';
/**
* Parse cookies from the `headers` of request
* @param req request object
*/
export declare function getCookieParser(headers: {
[key: string]: string | string[] | null | undefined;
}): () => NextApiRequestCookies;