Rocky_Mountain_Vending/.pnpm-store/v10/files/c2/4a5904e1aa30ef3b57827e796a914b476523499adf4332163c0b9461708d23309566bcd8704aaab975f7eb54bbe46e4ffd48d04149b656288ab6e5c7017d94
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
572 B
Text

/**
* The revalidate option used internally for pages. A value of `false` means
* that the page should not be revalidated. A number means that the page
* should be revalidated after the given number of seconds (this also includes
* `1` which means to revalidate after 1 second). A value of `0` is not a valid
* value for this option.
*/
export type Revalidate = number | false;
export interface CacheControl {
revalidate: Revalidate;
expire: number | undefined;
}
export declare function getCacheControlHeader({ revalidate, expire, }: CacheControl): string;