expo-modules-core
Version:
The core of Expo Modules architecture
11 lines (9 loc) • 324 B
text/typescript
export function installOnUIRuntime() {
const installOnUIRuntimeNative = globalThis?.expo?.installOnUIRuntime;
if (!installOnUIRuntimeNative) {
throw Error(
"Native method to install Expo Modules on Reanimated UI worklet runtime wasn't found in `expo-modules-core`."
);
}
installOnUIRuntimeNative();
}