Rocky_Mountain_Vending/.pnpm-store/v10/files/de/ba2903ac9faaa47b3159db79567730201b4a60e4a283173fce9ead763158ea8a6574d6ac32b04dcf8efd6b247beac546e3e077101e52884e07e06bc775c079
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

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;
}