Files
jefferyzhao b9bdc8598b first commit
2025-07-31 17:44:12 +08:00

8 lines
250 B
TypeScript

/// <reference types="node" />
import { ClientRequest } from 'http';
import type { Request } from '../types';
/**
* Fix proxied body if bodyParser is involved.
*/
export declare function fixRequestBody(proxyReq: ClientRequest, req: Request): void;