mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-08 22:42:40 +08:00
Reviewed By: astreet Differential Revision: D2965497 fb-gh-sync-id: 1aef5a1f2d7ccb8de8ca403e51ebcf247bd6b034 shipit-source-id: 1aef5a1f2d7ccb8de8ca403e51ebcf247bd6b034
13 lines
287 B
Java
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();
|
|
}
|