Rocky_Mountain_Vending/.pnpm-store/v10/files/95/d5d594ead8660bfa560a61e5aaebc1f9bf04445eb2955686f3cd23437e57bfccce4137716ed63633a3ba39b59479fea22a31476264c559c62d1e1edd8fb16b
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

35 lines
1.3 KiB
Text

import type { AppRouteRouteModule } from '../route-modules/app-route/module';
import './globals';
import { type AdapterOptions } from './adapter';
import type { NextConfigComplete } from '../config-shared';
export interface WrapOptions {
nextConfig: NextConfigComplete;
}
/**
* EdgeRouteModuleWrapper is a wrapper around a route module.
*
* Note that this class should only be used in the edge runtime.
*/
export declare class EdgeRouteModuleWrapper {
private readonly routeModule;
private readonly nextConfig;
private readonly matcher;
/**
* The constructor is wrapped with private to ensure that it can only be
* constructed by the static wrap method.
*
* @param routeModule the route module to wrap
*/
private constructor();
/**
* This will wrap a module with the EdgeModuleWrapper and return a function
* that can be used as a handler for the edge runtime.
*
* @param module the module to wrap
* @param options any options that should be passed to the adapter and
* override the ones passed from the runtime
* @returns a function that can be used as a handler for the edge runtime
*/
static wrap(routeModule: AppRouteRouteModule, options: WrapOptions): (opts: AdapterOptions) => Promise<import("./types").FetchEventResult>;
private handler;
}