Rocky_Mountain_Vending/.pnpm-store/v10/files/cf/c76755db7c55c887e365f75c7572f1e61d00b2494d7f93f44d0b5e74dba561571f310be2fa9ac62b42bcbc1a94330718097868ccdc73c5552339e04f07e1fa
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

3 lines
182 B
Text

import type { CacheHandlerValue } from '.';
import { LRUCache } from '../lru-cache';
export declare function getMemoryCache(maxMemoryCacheSize: number): LRUCache<CacheHandlerValue>;