Rocky_Mountain_Vending/.pnpm-store/v10/files/64/c2900a73b6351fe0a14568a41e9704589e6ed29de942f9a2b858ca7a2235708e84202873079f6512f9e68e8c3487fd3cdac02f6598170c2bd05660f40f1e40
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

11 lines
551 B
Text

import { IncrementalCache } from '../../server/lib/incremental-cache';
export declare function createIncrementalCache({ cacheHandler, cacheMaxMemorySize, fetchCacheKeyPrefix, distDir, dir, flushToDisk, cacheHandlers, requestHeaders, }: {
cacheHandler?: string;
cacheMaxMemorySize: number;
fetchCacheKeyPrefix?: string;
distDir: string;
dir: string;
flushToDisk?: boolean;
requestHeaders?: Record<string, string | string[] | undefined>;
cacheHandlers?: Record<string, string | undefined>;
}): Promise<IncrementalCache>;