//
//  SprtPrinter.h
//  qm-hardwarekit
//
//  Created by wuzhuoxuan on 2017/7/31.
//  Copyright © 2017年 Marc Shilling. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <React/RCTBridgeModule.h>
#import "DeviceBluetooth.h"

typedef void(^PrintError)(NSString *error);
typedef void(^PrintSuccess)(NSString *success);

@interface SprtPrinter : NSObject<RCTBridgeModule, CBPeripheralDelegate>
// 打印成功
@property (nonatomic,copy) PrintSuccess printSuccess;
// 打印失败
@property (nonatomic,copy) PrintError printError;
@end
