From 7298f9948b747d9531e625de44e900354fe7ae47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Wed, 14 Apr 2021 19:40:49 +0200 Subject: [PATCH] fixup! typings: add types for "http_parser" and "options" bindings --- typings/internalBinding/http_parser.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/internalBinding/http_parser.d.ts b/typings/internalBinding/http_parser.d.ts index 36a2412159c716..260c6e802b0808 100644 --- a/typings/internalBinding/http_parser.d.ts +++ b/typings/internalBinding/http_parser.d.ts @@ -30,7 +30,7 @@ declare namespace InternalHttpParserBinding { ): void; pause(): void; resume(): void; - consume(stream: object); + consume(stream: object): void; unconsume(): void; getCurrentBuffer(): Buffer; }