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