wilddragon-site/node_modules/next/dist/experimental/testmode/proxy/server.d.ts
2026-04-17 15:51:01 -04:00

5 lines
205 B
TypeScript
Executable file

import type { ProxyServer } from './types';
import type { FetchHandler } from './fetch-api';
export declare function createProxyServer({ onFetch, }: {
onFetch?: FetchHandler;
}): Promise<ProxyServer>;