mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-08 22:42:05 +08:00
Reviewed By: andreicoman11 Differential Revision: D3463317 fbshipit-source-id: feeda132cd596317ca45b083d69ae8df3ffbd6f0
20 lines
428 B
Java
20 lines
428 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 {
|
|
JSCConfig EMPTY = new JSCConfig() {
|
|
@Override
|
|
public WritableNativeMap getConfigMap() {
|
|
return new WritableNativeMap();
|
|
}
|
|
};
|
|
|
|
WritableNativeMap getConfigMap();
|
|
}
|