1eafa96e0SStanisław Chmiela // Copyright 2018-present 650 Industries. All rights reserved.
2eafa96e0SStanisław Chmiela 
3eafa96e0SStanisław Chmiela #import <AVFoundation/AVFoundation.h>
4eafa96e0SStanisław Chmiela #import <UIKit/UIKit.h>
5314e850cSTomasz Sapeta #import <ExpoModulesCore/EXModuleRegistry.h>
6314e850cSTomasz Sapeta #import <ExpoModulesCore/EXAppLifecycleListener.h>
7eafa96e0SStanisław Chmiela #import <EXBarCodeScanner/EXBarCodeScannerView.h>
8*5d715522SAlan Hughes #import <ExpoModulesCore/EXLegacyExpoViewProtocol.h>
9eafa96e0SStanisław Chmiela 
10*5d715522SAlan Hughes @interface EXBarCodeScannerView : UIView <EXAppLifecycleListener, EXLegacyExpoViewProtocol>
11eafa96e0SStanisław Chmiela 
12eafa96e0SStanisław Chmiela @property (nonatomic, assign) NSInteger presetCamera;
13eafa96e0SStanisław Chmiela @property (nonatomic, strong) NSArray *barCodeTypes;
14eafa96e0SStanisław Chmiela 
15314e850cSTomasz Sapeta - (instancetype)initWithModuleRegistry:(EXModuleRegistry *)moduleRegistry;
16eafa96e0SStanisław Chmiela - (void)onReady;
17eafa96e0SStanisław Chmiela - (void)onMountingError:(NSDictionary *)event;
18eafa96e0SStanisław Chmiela - (void)onBarCodeScanned:(NSDictionary *)event;
19eafa96e0SStanisław Chmiela 
20eafa96e0SStanisław Chmiela @end
21