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>
15 lines
645 B
Text
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>;
|