/* Licensed Materials - Property of IBM
 * 5725-I43 (C) Copyright IBM Corp. 2018. All Rights Reserved.
 * US Government Users Restricted Rights - Use, duplication or
 * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
 */

//
//  RNJSONStore.h
//  RNMfpJSONStorePlugin
//
//  Created by sandhyasuman (sandsuma@in.ibm.com) on 06/04/18.
//  Copyright © 2018 IBM Corp.  All rights reserved.
//

#import <Foundation/Foundation.h>

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

#import <React/RCTEventEmitter.h>

@interface RNWLJSONStore : RCTEventEmitter <RCTBridgeModule>
+ (void)sendJSONStoreEvent:(NSString *)name msg:(NSString *)msg;
+ (void)addSupportedEvent: (NSString *)eventName;
@end
