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