diff --git a/node/node.d.ts b/node/node.d.ts index 7f228e1765..b44046bb7f 100644 --- a/node/node.d.ts +++ b/node/node.d.ts @@ -658,8 +658,8 @@ declare module "http" { } export interface IncomingMessage extends stream.Readable { httpVersion: string; - httpVersionMajor: string; - httpVersionMinor: string; + httpVersionMajor: number; + httpVersionMinor: number; connection: net.Socket; headers: any; rawHeaders: string[];