//
//  LLObservingEmitter.h
//  LLLocalytics
//
//  Created by Anand Bashyam on 2/26/18.
//  Copyright © 2018 Localytics. All rights reserved.
//

#import <Foundation/Foundation.h>
#if __has_include(<React/RCTEventEmitter.h>)
  #import <React/RCTEventEmitter.h>
#else
  #import "RCTEventEmitter.h"
#endif

@interface LLObservingEmitter : RCTEventEmitter <RCTBridgeModule>
@property (nonatomic, readonly) bool isObserved;
- (void)sendEvent:(NSString*)eventName withData:(id)data;
@end
