From d3864ce14458cbd58ffaab2e4298e3b30e23c708 Mon Sep 17 00:00:00 2001 From: Silas Rech Date: Fri, 30 Jun 2017 18:01:44 +0200 Subject: [PATCH] [request] Add some missing properties --- types/request/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/types/request/index.d.ts b/types/request/index.d.ts index 2cf7b08cf9..dac5b36e42 100644 --- a/types/request/index.d.ts +++ b/types/request/index.d.ts @@ -134,12 +134,16 @@ declare namespace request { body?: any; followRedirect?: boolean | ((response: http.IncomingMessage) => boolean); followAllRedirects?: boolean; + followOriginalHttpMethod?: boolean; maxRedirects?: number; + removeRefererHeader?: boolean; encoding?: string | null; pool?: any; timeout?: number; + localAddress?: string; proxy?: any; strictSSL?: boolean; + time?: boolean; gzip?: boolean; preambleCRLF?: boolean; postambleCRLF?: boolean;