30 lines
1.2 KiB
JavaScript
30 lines
1.2 KiB
JavaScript
import { DeviceEventEmitter } from 'react-native';
|
|
import { EventEmitter } from './EventEmitter';
|
|
import NativeModule from './NativeModule';
|
|
import NativeModulesProxy from './NativeModulesProxy';
|
|
import { requireNativeViewManager } from './NativeViewManagerAdapter';
|
|
import Platform from './Platform';
|
|
import SharedObject from './SharedObject';
|
|
import { CodedError } from './errors/CodedError';
|
|
import { UnavailabilityError } from './errors/UnavailabilityError';
|
|
import './sweet/setUpErrorManager.fx';
|
|
import './web/index';
|
|
export { default as uuid } from './uuid';
|
|
export { DeviceEventEmitter, EventEmitter, NativeModulesProxy, Platform, requireNativeViewManager,
|
|
// Globals
|
|
SharedObject, NativeModule,
|
|
// Errors
|
|
CodedError, UnavailabilityError, };
|
|
export * from './requireNativeModule';
|
|
export * from './createWebModule';
|
|
export * from './TypedArrays.types';
|
|
/**
|
|
* @deprecated renamed to `DeviceEventEmitter`
|
|
*/
|
|
export const SyntheticPlatformEmitter = DeviceEventEmitter;
|
|
export * from './PermissionsInterface';
|
|
export * from './PermissionsHook';
|
|
export * from './Refs';
|
|
export * from './hooks/useReleasingSharedObject';
|
|
export * from './reload';
|
|
//# sourceMappingURL=index.js.map
|