diff --git a/node/node.d.ts b/node/node.d.ts index 63de7fc766..800918a9de 100644 --- a/node/node.d.ts +++ b/node/node.d.ts @@ -655,6 +655,9 @@ declare module "http" { } export interface IncomingMessage extends events.EventEmitter, stream.Readable { httpVersion: string; + httpVersionMajor: string; + httpVersionMinor: string; + connection: any; headers: any; rawHeaders: string[]; trailers: any;