/* 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.
 */
 
//
//  RNJSONStoreCollection.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

@interface RNJSONStoreCollection: NSObject <RCTBridgeModule>
+ (NSArray*) getCollectionList:(NSArray*)collectionNames;
@end
