//
//  RNCCChannels.h
//  RNContextCenter
//
//  Created by Shaffiulla Khan on 09/01/19.
//  Copyright © 2019 Impekable LLC. All rights reserved.
//

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

@interface RNCCChannels : RCTEventEmitter <RCTBridgeModule>
+ (void)fetchChannelForSid:(NSString *)sid completion:(void (^)(TCHResult *result, TCHChannel *channel))completion;
@end
