next
Version:
The React Framework
12 lines (11 loc) • 397 B
TypeScript
import type { WasmBinding } from '../../../build/webpack/loaders/next-middleware-wasm-loader';
import type { RequestData, FetchEventResult } from '../types';
export declare function run(params: {
name: string;
env: string[];
onWarning: (warn: Error) => void;
paths: string[];
request: RequestData;
useCache: boolean;
wasm: WasmBinding[];
}): Promise<FetchEventResult>;