Optional
nativeModule: NativeModuleEmits an event of the given type with the given data. All handlers of that particular type will be notified.
Name of the event to emit
Rest
...params: any[]emitter.addListener('someEvent', function(message) {
console.log(message);
});
emitter.emit('someEvent', 'abc'); // logs 'abc'
Generated using TypeDoc
the NativeModule implementation. This is required on IOS and will throw an invariant error if undefined.