expo-modules-core
Version:
The core of Expo Modules architecture
10 lines (7 loc) • 411 B
text/typescript
import type { ProxyNativeModule } from './NativeModulesProxy.types';
// We default to an empty object shim wherever we don't have an environment-specific implementation
/**
* @deprecated `NativeModulesProxy` is deprecated and might be removed in the future releases.
* Use `requireNativeModule` or `requireOptionalNativeModule` instead.
*/
export default {} as { [moduleName: string]: ProxyNativeModule };