mirror of
https://github.com/status-im/react-native-camera-kit.git
synced 2025-03-01 08:00:42 +00:00
17 lines
345 B
Objective-C
17 lines
345 B
Objective-C
//
|
|
// CKGallery.h
|
|
// ReactNativeCameraKit
|
|
//
|
|
// Created by Ran Greenberg on 30/05/2016.
|
|
// Copyright © 2016 Wix. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "RCTBridgeModule.h"
|
|
|
|
typedef void (^CallbackGalleryBlock)(BOOL success, NSString *encodeImage);
|
|
|
|
@interface CKGalleryManager : NSObject <RCTBridgeModule>
|
|
|
|
@end
|