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 @protocol EXEventEmitterService
9 
10 - (void)sendEventWithName:(NSString *)name body:(id)body;
11 
12 @end
13