From 0716d3b4e2c8aefafd298a0f833562bf66cab141 Mon Sep 17 00:00:00 2001 From: Victor Villas Date: Wed, 11 Sep 2019 06:29:40 -0300 Subject: [PATCH] Add body and querystring to RequestOptions (#957) --- lib/Connection.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Connection.d.ts b/lib/Connection.d.ts index 732da2bc8..1a4c0141d 100644 --- a/lib/Connection.d.ts +++ b/lib/Connection.d.ts @@ -23,6 +23,8 @@ interface ConnectionOptions { interface RequestOptions extends http.ClientRequestArgs { asStream?: boolean; + body?: any; + querystring?: string; } export interface AgentOptions {