mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
acda299453
Reviewed By: fkgozali Differential Revision: D23450649 fbshipit-source-id: 58265a2c7855a2f4371d68637f09a07921821adf
21 lines
557 B
Objective-C
21 lines
557 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 <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol RCTImageResponseDelegate <NSObject>
|
|
|
|
- (void)didReceiveImage:(UIImage *)image metadata:(id)metadata fromObserver:(void const *)observer;
|
|
- (void)didReceiveProgress:(float)progress fromObserver:(void const *)observer;
|
|
- (void)didReceiveFailureFromObserver:(void const *)observer;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|