Update request.d.ts

Make formData optional.
This commit is contained in:
Shiak1
2015-09-20 13:37:55 -04:00
parent 813a3c7490
commit 48c9d444f3
+1 -1
View File
@@ -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;