
#import "RNPrinteriOs.h"
#import "BRPtouchPrinterKit.h"
@implementation RNPrinteriOs

- (dispatch_queue_t)methodQueue
{
    return dispatch_get_main_queue();
}
RCT_EXPORT_MODULE()
RCT_EXPORT_METHOD(showUnPairedBluetoothDevices)
{
     [[BRPtouchBluetoothManager sharedManager] brShowBluetoothAccessoryPickerWithNameFilter:nil];
}
@end
  
