This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-02 02:24:13 +03:00

16 lines
565 B
JavaScript

import { DeviceEventEmitter } from 'react-native';
import { RCTEventEmitter } from './nativeEmitters';
/**
* This emitter is used for sending synthetic native events to listeners
* registered in the API layer with `NativeEventEmitter`.
*/
class SyntheticPlatformEmitter {
constructor() {
this._emitter = new RCTEventEmitter(DeviceEventEmitter.sharedSubscriber);
}
emit(eventName, props) {
this._emitter.emit(eventName, props);
}
}
export default new SyntheticPlatformEmitter();
//# sourceMappingURL=SyntheticPlatformEmitter.js.map