Rocky_Mountain_Vending/.pnpm-store/v10/files/62/430d80866fdc64f6ad358845b2baec9b9507b75c1edb0e3ee40eb63b7a580fde7bf25f83879848d02a72f2028b5122d908feeab10c497292d1b3e41fdad553
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
300 B
Text

export type CacheLife = {
stale?: number;
revalidate?: number;
expire?: number;
};
type CacheLifeProfiles = 'default' | 'seconds' | 'minutes' | 'hours' | 'days' | 'weeks' | 'max' | (string & {});
export declare function cacheLife(profile: CacheLifeProfiles | CacheLife): void;
export {};