1 // Copyright © 2018 650 Industries. All rights reserved.
2 
3 #import <Foundation/Foundation.h>
4 
5 #import <ExpoModulesCore/EXDefines.h>
6 #import <ExpoModulesCore/EXExportedModule.h>
7 
8 // Implement this protocol in your exported module to be able
9 // to send events through platform event emitter.
10 
11 @protocol EXEventEmitter
12 
13 - (void)startObserving;
14 - (void)stopObserving;
15 
16 - (NSArray<NSString *> *)supportedEvents;
17 
18 @end
19