Rocky_Mountain_Vending/.pnpm-store/v10/files/e1/f9a2b9d261d29e26a8eb993a74cc80e7eaa4a4c710e63e33cace2dee956c1973f1ec24e1c5cb7723b7433ae3d3d16b24cb46860cef5d7845be068797fa2d37
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 * as Types from '../types/types.js';
export declare function reset(): void;
export declare function handleUserConfig(userConfig: Types.Configuration.Configuration): void;
export declare function handleEvent(event: Types.Events.Event): void;
export declare function finalize(): Promise<void>;
interface InvalidationsData {
invalidationsForEvent: Map<Types.Events.Event, Types.Events.InvalidationTrackingEvent[]>;
invalidationCountForEvent: Map<Types.Events.Event, number>;
}
export declare function data(): InvalidationsData;
export {};