Add body and querystring to RequestOptions (#957)

This commit is contained in:
Victor Villas
2019-09-11 06:29:40 -03:00
committed by delvedor
parent 6dd9d2737c
commit 0716d3b4e2

2
lib/Connection.d.ts vendored
View File

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