Add body and querystring to RequestOptions (#957)

This commit is contained in:
Victor Villas
2019-09-11 06:29:40 -03:00
committed by Tomas Della Vedova
parent f7be49f2ba
commit 4ff1bd5110

2
lib/Connection.d.ts vendored
View File

@ -25,6 +25,8 @@ interface ConnectionOptions {
interface RequestOptions extends http.ClientRequestArgs {
asStream?: boolean;
body?: any;
querystring?: string;
}
export interface AgentOptions {