From 48c9d444f3b51ca8078b01e835a94ad88ffb0102 Mon Sep 17 00:00:00 2001 From: Shiak1 Date: Sun, 20 Sep 2015 13:37:55 -0400 Subject: [PATCH] Update request.d.ts Make formData optional. --- request/request.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/request/request.d.ts b/request/request.d.ts index 5332aa90a..7fb7e9470 100644 --- a/request/request.d.ts +++ b/request/request.d.ts @@ -62,7 +62,7 @@ declare module 'request' { uri?: string; callback?: (error: any, response: http.IncomingMessage, body: any) => void; jar?: any; // CookieJar - formData: any; // Object + formData?: any; // Object form?: any; // Object or string auth?: AuthOptions; oauth?: OAuthOptions;