-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
29 lines (26 loc) · 916 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// import { DeviceEventEmitter } from 'react-native';
// import { EventEmitter, Subscription } from './EventEmitter';
import NativeModulesProxy from './NativeModulesProxy.ios';
import { ProxyNativeModule } from './NativeModulesProxy.types';
// import { requireNativeViewManager } from './NativeViewManagerAdapter';
import Platform from './Platform';
// import SyntheticPlatformEmitter from './SyntheticPlatformEmitter';
import { CodedError } from './errors/CodedError';
import { UnavailabilityError } from './errors/UnavailabilityError';
export {
// DeviceEventEmitter,
// EventEmitter,
NativeModulesProxy,
ProxyNativeModule,
Platform,
// Subscription,
// SyntheticPlatformEmitter,
// requireNativeViewManager,
// Errors
CodedError,
UnavailabilityError,
};
// /**
// * @deprecated renamed to `DeviceEventEmitter`
// */
// export const RCTDeviceEventEmitter = DeviceEventEmitter;