File size: 205 Bytes
fea495a
 
 
 
 
1
2
3
4
5
6
import type { ProxyServer } from './types';
import type { FetchHandler } from './fetch-api';
export declare function createProxyServer({ onFetch, }: {
    onFetch?: FetchHandler;
}): Promise<ProxyServer>;