/opt/canhelp/node_modules/next/dist/server/web
NameSizeModeActions
exports/-0755rm
sandbox/-0755rm
spec-extension/-0755rm
adapter.d.ts10210644editdlrm
adapter.js185740644editdlrm
adapter.js.map284060644editdlrm
edge-route-module-wrapper.d.ts13670644editdlrm
edge-route-module-wrapper.js51840644editdlrm
edge-route-module-wrapper.js.map85220644editdlrm
error.d.ts2640644editdlrm
error.js14230644editdlrm
error.js.map13960644editdlrm
get-edge-preview-props.d.ts3870644editdlrm
get-edge-preview-props.js8020644editdlrm
get-edge-preview-props.js.map10670644editdlrm
globals.d.ts4020644editdlrm
globals.js48300644editdlrm
globals.js.map61580644editdlrm
http.d.ts6740644editdlrm
http.js7950644editdlrm
http.js.map11240644editdlrm
internal-edge-wait-until.d.ts1560644editdlrm
internal-edge-wait-until.js21720644editdlrm
internal-edge-wait-until.js.map29320644editdlrm
next-url.d.ts17520644editdlrm
next-url.js74400644editdlrm
next-url.js.map132480644editdlrm
types.d.ts19410644editdlrm
types.js1150644editdlrm
types.js.map670644editdlrm
utils.d.ts12490644editdlrm
utils.js49140644editdlrm
utils.js.map83650644editdlrm
web-on-close.d.ts5420644editdlrm
web-on-close.js27850644editdlrm
web-on-close.js.map34060644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/server/web/edge-route-module-wrapper.d.ts (1367B)
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; private handler; }