11 lines
213 B
Objective-C
11 lines
213 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import "ViewfinderView.h"
|
|
|
|
@class AVCaptureSession;
|
|
|
|
@interface RCTCamera : UIView
|
|
|
|
@property (nonatomic) AVCaptureSession *session;
|
|
@property (nonatomic) ViewfinderView *viewfinder;
|
|
|
|
@end |