mirror of
https://github.com/status-im/react-native-cameraroll.git
synced 2025-01-12 10:54:18 +00:00
75b4208474
* Update RNCCameraRollManager.m * Update CameraRollModule.java * Update README.md * Update RNCCameraRollManager.m * Update CameraRoll.d.ts * Update RNCCameraRollManager.h * Update CameraRollModule.java * Update RNCCameraRollManager.m * update code
25 lines
603 B
Objective-C
25 lines
603 B
Objective-C
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <Photos/Photos.h>
|
|
|
|
#import <React/RCTBridgeModule.h>
|
|
#import <React/RCTConvert.h>
|
|
|
|
@interface RCTConvert (PHFetchOptions)
|
|
|
|
+ (PHFetchOptions *)PHFetchOptionsFromMediaType:(NSString *)mediaType
|
|
fromTime:(NSUInteger)fromTime
|
|
toTime:(NSUInteger)toTime;
|
|
|
|
@end
|
|
|
|
|
|
@interface RNCCameraRollManager : NSObject <RCTBridgeModule>
|
|
|
|
@end
|