mirror of
https://github.com/status-im/react-native-camera.git
synced 2025-02-24 09:48:17 +00:00
15 lines
327 B
Objective-C
15 lines
327 B
Objective-C
//
|
|
// RNFaceDetectorModule.h
|
|
// RCTCamera
|
|
//
|
|
// Created by Joao Guilherme Daros Fidelis on 21/01/18.
|
|
//
|
|
|
|
#import <React/RCTBridgeModule.h>
|
|
#if __has_include(<GoogleMobileVision/GoogleMobileVision.h>)
|
|
#import <GoogleMobileVision/GoogleMobileVision.h>
|
|
#endif
|
|
|
|
@interface RNFaceDetectorModule : NSObject <RCTBridgeModule>
|
|
@end
|