/opt/canhelp/node_modules/next/dist/server/web/sandbox
NameSizeModeActions
context.d.ts16460644editdlrm
context.js189190644editdlrm
context.js.map291470644editdlrm
fetch-inline-assets.d.ts5710644editdlrm
fetch-inline-assets.js11380644editdlrm
fetch-inline-assets.js.map24510644editdlrm
index.d.ts750644editdlrm
index.js7640644editdlrm
index.js.map2710644editdlrm
resource-managers.d.ts7530644editdlrm
resource-managers.js29070644editdlrm
resource-managers.js.map45320644editdlrm
sandbox.d.ts9670644editdlrm
sandbox.js55060644editdlrm
sandbox.js.map90860644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/server/web/sandbox/sandbox.d.ts (967B)
import type { NodejsRequestData, FetchEventResult } from '../types'; import type { EdgeFunctionDefinition } from '../../../build/webpack/plugins/middleware-plugin'; import type { EdgeRuntime } from 'next/dist/compiled/edge-runtime'; import type { ServerComponentsHmrCache } from '../../response-cache'; export declare const ErrorSource: unique symbol; interface RunnerFnParams { name: string; onError?: (err: unknown) => void; onWarning?: (warn: Error) => void; paths: string[]; request: NodejsRequestData; useCache: boolean; edgeFunctionEntry: Pick; distDir: string; incrementalCache?: any; serverComponentsHmrCache?: ServerComponentsHmrCache; } type RunnerFn = (params: RunnerFnParams) => Promise; export declare function getRuntimeContext(params: Omit): Promise>; export declare const run: RunnerFn; export {};