react-native-navigation的迁移库

PublicEventsRegistry.js 253B

123456789101112
  1. class PublicEventsRegistry {
  2. constructor(nativeEventsReceiver) {
  3. this.nativeEventsReceiver = nativeEventsReceiver;
  4. }
  5. onAppLaunched(callback) {
  6. this.nativeEventsReceiver.appLaunched(callback);
  7. }
  8. }
  9. module.exports = PublicEventsRegistry;