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>
19 lines
551 B
Text
19 lines
551 B
Text
declare module "__ENTRY_POINT__" {
|
|
import { Middleware } from "./middleware/common";
|
|
import { WorkerEntrypoint } from "cloudflare:workers";
|
|
|
|
export type WorkerEntrypointConstructor = typeof WorkerEntrypoint;
|
|
|
|
const worker: ExportedHandler | WorkerEntrypointConstructor;
|
|
export default worker;
|
|
export const __INTERNAL_WRANGLER_MIDDLEWARE__: Middleware[];
|
|
}
|
|
|
|
declare module "__KV_ASSET_HANDLER__" {
|
|
export * from "@cloudflare/kv-asset-handler";
|
|
}
|
|
|
|
declare module "__STATIC_CONTENT_MANIFEST" {
|
|
const manifest: string;
|
|
export default manifest;
|
|
}
|