From b056f7d7964b440fe8cc0ad5eecde0b6757571d1 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 527b71fb7..7eed38c3a 100644 --- a/lib/Connection.d.ts +++ b/lib/Connection.d.ts @@ -25,6 +25,8 @@ interface ConnectionOptions { interface RequestOptions extends http.ClientRequestArgs { asStream?: boolean; + body?: any; + querystring?: string; } export interface AgentOptions {