Fix a parameter type in NativeNetworkingAndroidSpec

Summary:
`responseType` should be a string, not an Object (which gets converted to a NativeMap by TM).

Changelog: [General] [Fixed] Fix the flow type for NativeNetworkingModule

Reviewed By: fkgozali

Differential Revision: D18019418

fbshipit-source-id: 316470ca82241223eafb5b05a54fc2bbf3074821
This commit is contained in:
Emily Janzer
2019-10-22 19:32:31 -07:00
committed by Facebook Github Bot
parent e040a198e2
commit c10c147bcc
3 changed files with 4 additions and 4 deletions
@@ -37,8 +37,8 @@ public abstract class NativeNetworkingAndroidSpec extends ReactContextBaseJavaMo
@ReactMethod
public abstract void sendRequest(String method, String url, double requestId,
ReadableArray headers, ReadableMap data, ReadableMap responseType,
boolean useIncrementalUpdates, double timeout, boolean withCredentials);
ReadableArray headers, ReadableMap data, String responseType, boolean useIncrementalUpdates,
double timeout, boolean withCredentials);
@ReactMethod
public abstract void addListener(String eventName);