Files
Botexercito/Frontend/angular-internal-chat/node_modules/http-proxy-middleware/dist/factory.d.ts
T

4 lines
296 B
TypeScript
Raw Normal View History

2026-03-22 18:07:19 +00:00
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>;