Rocky_Mountain_Vending/.pnpm-store/v10/files/f2/aea1d118a9e7f6fb165cc65076eeeedf91fe5ecc9753016c83029500679aa701610547f8815f308cdc153dd91758a871a98e3d521ad9a4292879c9587b42aa
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

15 lines
645 B
Text

/// <reference types="@cloudflare/workers-types" />
export declare const getEvent: (request: Request) => Pick<FetchEvent, "request" | "waitUntil">;
export declare const mockKV: (kvStore: Record<string, string>) => {
get: (path: string) => string;
};
export declare const mockManifest: () => string;
export declare const mockCaches: () => {
default: {
match(key: Request): Promise<Response>;
put(key: Request, val: Response): Promise<void>;
};
};
export declare function mockRequestScope(): void;
export declare function mockGlobalScope(): void;
export declare const sleep: (milliseconds: number) => Promise<unknown>;