Skip to content

Commit 002db4f

Browse files
committed
fix: exports
1 parent cbbc560 commit 002db4f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/expo-nativescript-adapter/UMNativeModulesProxy.android.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { NativeScriptContext } from "./android-specific/NativeScriptContext.andr
2525
* @see NativeModulesProxy.java
2626
* @see expo-flutter-adapter.java
2727
*/
28-
class UMNativeModulesProxy extends UMNativeModulesProxyBase {
28+
export class UMNativeModulesProxy extends UMNativeModulesProxyBase {
2929
/* TODO */
3030
// private readonly viewManagerClassesRegistry: UMViewManagerAdapterClassesRegistry = UMViewManagerAdapterClassesRegistry.alloc().init();
3131
private readonly moduleRegistry: org.unimodules.core.ModuleRegistry;

packages/expo-nativescript-adapter/UMNativeModulesProxy.ios.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { UMNativeModulesProxyBase, methodInfoArgumentsCountKey, methodInfoNameKey, methodInfoKeyKey, MethodInfo, modulesConstantsKey, viewManagersNamesKey, exportedMethodsKey } from "./UMNativeModulesProxyCommon";
44
import type { ExpoEvent } from "./UMNativeModulesProxyCommon";
55

6-
class UMNativeModulesProxy extends UMNativeModulesProxyBase {
6+
export class UMNativeModulesProxy extends UMNativeModulesProxyBase {
77
/* TODO */
88
// private readonly viewManagerClassesRegistry: UMViewManagerAdapterClassesRegistry = UMViewManagerAdapterClassesRegistry.alloc().init();
99
// private readonly provider: UMModuleRegistryProvider = UMModuleRegistryProvider.alloc().init();

packages/expo-nativescript-adapter/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@nativescript-community/expo-nativescript-adapter",
33
"version": "1.0.0",
44
"description": "Nativescript Expo Unimodules adapter plugin.",
5-
"main": "index",
5+
"main": "index.js",
66
"typings": "index.d.ts",
77
"nativescript": {
88
"platforms": {

0 commit comments

Comments
 (0)