Move interfaces from Bridge to a new buck target

Reviewed By: achen1

Differential Revision: D9513130

fbshipit-source-id: f23e3274eed5f0adcffdc3e10d20a4d49e81bca5
This commit is contained in:
Ram N
2018-08-28 22:41:44 -07:00
committed by Facebook Github Bot
parent f8f1870248
commit 01580de613
10 changed files with 73 additions and 29 deletions
@@ -20,7 +20,7 @@ import com.facebook.proguard.annotations.DoNotStrip;
@DoNotStrip
public interface NativeModule {
interface NativeMethod {
void invoke(JSInstance jsInstance, ReadableNativeArray parameters);
void invoke(JSInstance jsInstance, ReadableArray parameters);
String getType();
}