//
//  LLMessagingEmitter.h
//  LLLocalytics
//
//  Created by Anand Bashyam on 2/24/18.
//  Copyright © 2018 Facebook. All rights reserved.
//

#import "LLBlockingEmitter.h"

@interface LLMessagingEmitter : LLBlockingEmitter
+ (BOOL)localyticsShouldDeepLinkReceived:(NSString *)url;
+ (void) processDeepLinkResponse:(NSString*)event withResponse:(id)response;
+ (void)sendEvent:(NSString*)eventName withData:(id)data;
@end

