1 // Copyright 2015-present 650 Industries. All rights reserved.
2 
3 #import <React/RCTEventEmitter.h>
4 
5 @interface EXAppState : RCTEventEmitter
6 
7 /**
8  *  Kernel manages the state of each bridge and passes it here.
9  */
10 - (void)setState:(NSString *)state;
11 
12 @property (nonatomic, strong, readonly) NSString *lastKnownState;
13 
14 @end
15