Rocky_Mountain_Vending/.pnpm-store/v10/files/09/44363ea1c83808a3402d9043d4fdd3dd66beb973de2c7ff28736b5068894518aa0de92c6567a16925cb39c3059b9a265a6f8612a23888c175e42f9919d9edf
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

20 lines
565 B
Text

/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
declare module 'parse-cache-control' {
// Follows the potential settings of cache-control, see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
interface CacheHeaders {
'max-age'?: number;
'must-revalidate'?: boolean;
'no-cache'?: boolean;
'no-store'?: boolean;
'private'?: boolean;
'stale-while-revalidate'?: boolean;
}
function ParseCacheControl(headers?: string): CacheHeaders | null;
export = ParseCacheControl;
}