fix-request-body.d.ts 224 B

123456
  1. /// <reference types="node" />
  2. import type * as http from 'http';
  3. /**
  4. * Fix proxied body if bodyParser is involved.
  5. */
  6. export declare function fixRequestBody(proxyReq: http.ClientRequest, req: http.IncomingMessage): void;