yeet
This commit is contained in:
21
node_modules/unimodules-barcode-scanner-interface/ios/UMBarCodeScannerInterface/UMBarCodeScannerInterface.h
generated
vendored
Normal file
21
node_modules/unimodules-barcode-scanner-interface/ios/UMBarCodeScannerInterface/UMBarCodeScannerInterface.h
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
// Copyright 2016-present 650 Industries. All rights reserved.
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <AVFoundation/AVFoundation.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@protocol UMBarCodeScannerInterface
|
||||
|
||||
- (void)setSession:(AVCaptureSession *)session;
|
||||
- (void)setSessionQueue:(dispatch_queue_t)sessionQueue;
|
||||
- (void)setOnBarCodeScanned:(void (^)(NSDictionary *))onBarCodeScanned;
|
||||
|
||||
- (void)setIsEnabled:(BOOL)enabled;
|
||||
- (void)setSettings:(NSDictionary *)settings;
|
||||
|
||||
- (void)setPreviewLayer:(AVCaptureVideoPreviewLayer *)previewLayer;
|
||||
|
||||
- (void)maybeStartBarCodeScanning;
|
||||
- (void)stopBarCodeScanning;
|
||||
|
||||
@end
|
9
node_modules/unimodules-barcode-scanner-interface/ios/UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h
generated
vendored
Normal file
9
node_modules/unimodules-barcode-scanner-interface/ios/UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
// Copyright 2016-present 650 Industries. All rights reserved.
|
||||
|
||||
#import <UMBarCodeScannerInterface/UMBarCodeScannerInterface.h>
|
||||
|
||||
@protocol UMBarCodeScannerProviderInterface
|
||||
|
||||
- (id<UMBarCodeScannerInterface>)createBarCodeScanner;
|
||||
|
||||
@end
|
Reference in New Issue
Block a user