From 9c760147bdd6d758da95dc81ede942e1f905ef02 Mon Sep 17 00:00:00 2001 From: Mike Marcacci Date: Mon, 22 Apr 2019 15:01:51 -0700 Subject: [PATCH] Add IncomingMessage.complete (#34898) https://github.com/nodejs/node/blob/528d100394ab45dd62141e010e53722accd5826d/lib/_http_incoming.js#L50 https://nodejs.org/api/http.html#http_message_complete --- types/node/http.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/node/http.d.ts b/types/node/http.d.ts index f99f8e38f1..31175d76b6 100644 --- a/types/node/http.d.ts +++ b/types/node/http.d.ts @@ -180,6 +180,7 @@ declare module "http" { httpVersion: string; httpVersionMajor: number; httpVersionMinor: number; + complete: boolean; connection: Socket; headers: IncomingHttpHeaders; rawHeaders: string[];