Files
react-native/ReactAndroid/src/main/java/com/facebook/react/JSCConfig.java
Andrei Coman d032cc967d Pass jsc config to JSC
Reviewed By: astreet

Differential Revision: D2965497

fb-gh-sync-id: 1aef5a1f2d7ccb8de8ca403e51ebcf247bd6b034
shipit-source-id: 1aef5a1f2d7ccb8de8ca403e51ebcf247bd6b034
2016-02-26 03:24:36 -08:00

13 lines
287 B
Java

// Copyright 2004-present Facebook. All Rights Reserved.
package com.facebook.react;
import com.facebook.react.bridge.WritableNativeMap;
/**
* Interface for the configuration object that is passed to JSC.
*/
public interface JSCConfig {
public WritableNativeMap getConfigMap();
}