mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 15:30:57 +00:00
4 lines
296 B
TypeScript
4 lines
296 B
TypeScript
import type { Options, RequestHandler, NextFunction } from './types';
|
|
import type * as http from 'http';
|
|
export declare function createProxyMiddleware<TReq = http.IncomingMessage, TRes = http.ServerResponse, TNext = NextFunction>(options: Options<TReq, TRes>): RequestHandler<TReq, TRes, TNext>;
|