Rocky_Mountain_Vending/.pnpm-store/v10/files/ed/53fc1b4375433be49d1368bd27d7dfbf3e1b78b1aa3741ee644db344ea8bef7506abfec245b9131da4fbc4547d2a3cf8ec3bd150eb090ec0a766b1c5fa26aa
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

12 lines
570 B
Text

import { CacheSignal } from '../cache-signal';
export declare function trackPendingChunkLoad(promise: Promise<unknown>): void;
export declare function trackPendingImport(exportsOrPromise: unknown): void;
/**
* A top-level dynamic import (or chunk load):
*
* 1. delays a prerender (potentially for a task or longer)
* 2. may reveal more caches that need be filled
*
* So if we see one, we want to extend the duration of `cacheSignal` at least until the import/chunk-load is done.
*/
export declare function trackPendingModules(cacheSignal: CacheSignal): void;