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>
20 lines
565 B
Text
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;
|
|
}
|