Initial boiler plate project
This commit is contained in:
32
node_modules/next/dist/server/web/edge-route-module-wrapper.d.ts
generated
vendored
Normal file
32
node_modules/next/dist/server/web/edge-route-module-wrapper.d.ts
generated
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
import type { AppRouteRouteModule } from '../future/route-modules/app-route/module';
|
||||
import './globals';
|
||||
import { type AdapterOptions } from './adapter';
|
||||
type WrapOptions = Partial<Pick<AdapterOptions, 'page'>>;
|
||||
/**
|
||||
* 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 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;
|
||||
}
|
||||
export {};
|
||||
Reference in New Issue
Block a user