Rocky_Mountain_Vending/.pnpm-store/v10/files/73/bd003d2ff87bbb868cab5c77e7b8ecd6aceba28da7f61795d0ae29c17e53cb6226a934415d5e4c603d53b76a2104fc3e4dabdef477f84be993721e98066a2e
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

23 lines
998 B
Text

import type { OpaqueFallbackRouteParams } from '../request/fallback-params';
import { type LazyResult } from './lazy-result';
export interface ImplicitTags {
/**
* For legacy usage, the implicit tags are passed to the incremental cache
* handler in `get` calls.
*/
readonly tags: string[];
/**
* Modern cache handlers don't receive implicit tags. Instead, the implicit
* tags' expirations are stored in the work unit store, and used to compare
* with a cache entry's timestamp.
*
* Note: This map contains lazy results so that we can evaluate them when the
* first cache entry is read. It allows us to skip fetching the expiration
* values if no caches are read at all.
*/
readonly expirationsByCacheKind: Map<string, LazyResult<number>>;
}
export declare function getImplicitTags(page: string, url: {
pathname: string;
search?: string;
}, fallbackRouteParams: null | OpaqueFallbackRouteParams): Promise<ImplicitTags>;