mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
6c989fe7c6
Reviewed By: fkgozali Differential Revision: D8111636 fbshipit-source-id: 6e32703b077144962519485002adff8c9f6084ad
16 lines
389 B
Java
16 lines
389 B
Java
package com.facebook.react.bridge;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Interface used to initialize JSI Modules into the JSI Bridge.
|
|
*/
|
|
public interface JSIModulePackage {
|
|
|
|
/**
|
|
* @return a {@link List< JSIModuleSpec >} that contain the list of JSI Modules.
|
|
*/
|
|
List<JSIModuleSpec> getJSIModules(ReactApplicationContext reactApplicationContext, JavaScriptContextHolder jsContext);
|
|
|
|
}
|