Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
8 lines
250 B
8 lines
250 B
2 years ago
|
/// <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;
|