Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

RNBluetoothEscposPrinter.h 519B

12345678910111213141516
  1. #import <React/RCTBridgeModule.h>
  2. #import "RNBluetoothManager.h";
  3. @interface RNBluetoothEscposPrinter : NSObject <RCTBridgeModule,WriteDataToBleDelegate>
  4. @property (nonatomic,assign) NSInteger deviceWidth;
  5. -(void) textPrint:(NSString *) text
  6. inEncoding:(NSString *) encoding
  7. withCodePage:(NSInteger) codePage
  8. widthTimes:(NSInteger) widthTimes
  9. heightTimes:(NSInteger) heightTimes
  10. fontType:(NSInteger) fontType
  11. delegate:(NSObject<WriteDataToBleDelegate> *) delegate;
  12. @end