UNPKG

296 BTypeScriptView Raw
1import type { Options, RequestHandler, NextFunction } from './types';
2import type * as http from 'http';
3export declare function createProxyMiddleware<TReq = http.IncomingMessage, TRes = http.ServerResponse, TNext = NextFunction>(options: Options<TReq, TRes>): RequestHandler<TReq, TRes, TNext>;