15 lines
372 B
Objective-C
15 lines
372 B
Objective-C
#import "RCTView.h"
|
|
|
|
extern NSString *const RNVideoEventLoaded;
|
|
extern NSString *const RNVideoEventLoading;
|
|
extern NSString *const RNVideoEventProgress;
|
|
extern NSString *const RNVideoEventLoadingError;
|
|
|
|
@class RCTEventDispatcher;
|
|
|
|
@interface RCTVideo : UIView
|
|
|
|
- (instancetype)initWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher NS_DESIGNATED_INITIALIZER;
|
|
|
|
@end
|