This repository has been archived on 2026-05-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novarix-networks-homepage/node_modules/next/dist/server/web/sandbox/sandbox.d.ts
T
Kismet Hasanaj 34dc9aec52 .
2026-05-02 20:07:02 +02:00

23 lines
997 B
TypeScript

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<EdgeFunctionDefinition, 'assets' | 'wasm' | 'env'>;
distDir: string;
incrementalCache?: any;
serverComponentsHmrCache?: ServerComponentsHmrCache;
clientAssetToken: string;
}
type RunnerFn = (params: RunnerFnParams) => Promise<FetchEventResult>;
export declare function getRuntimeContext(params: Omit<RunnerFnParams, 'request'>): Promise<EdgeRuntime<any>>;
export declare const run: RunnerFn;
export {};