Rocky_Mountain_Vending/.pnpm-store/v10/files/83/e0051770b42ffe831d5e05edb3314b84923f6aa853c70f7aefa6145fa7ace1b5a54411ad9bd3765f386abe0d579e2a552f6a02182538f5314cd3000c37fbc2
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

6 lines
541 B
Text

import type { WorkStore } from './app-render/work-async-storage.external';
/** Run a callback, and execute any *new* revalidations added during its runtime. */
export declare function withExecuteRevalidates<T>(store: WorkStore | undefined, callback: () => Promise<T>): Promise<T>;
type RevalidationState = Required<Pick<WorkStore, 'pendingRevalidatedTags' | 'pendingRevalidates' | 'pendingRevalidateWrites'>>;
export declare function executeRevalidates(workStore: WorkStore, state?: RevalidationState): Promise<[void, ...any[]]>;
export {};