2015-04-06 12:17:32 -07:00
|
|
|
#import "RCTView.h"
|
|
|
|
|
2015-04-08 11:58:00 +03:00
|
|
|
extern NSString *const RNVideoEventLoaded;
|
|
|
|
extern NSString *const RNVideoEventLoading;
|
|
|
|
extern NSString *const RNVideoEventProgress;
|
2015-04-09 01:15:57 +03:00
|
|
|
extern NSString *const RNVideoEventSeek;
|
2015-04-08 11:58:00 +03:00
|
|
|
extern NSString *const RNVideoEventLoadingError;
|
2015-04-10 22:57:37 -04:00
|
|
|
extern NSString *const RNVideoEventEnd;
|
2015-04-08 09:49:14 +03:00
|
|
|
|
2015-04-06 12:17:32 -07:00
|
|
|
@class RCTEventDispatcher;
|
2015-03-30 22:07:55 -07:00
|
|
|
|
|
|
|
@interface RCTVideo : UIView
|
|
|
|
|
2015-04-06 12:17:32 -07:00
|
|
|
- (instancetype)initWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher NS_DESIGNATED_INITIALIZER;
|
|
|
|
|
2015-03-30 22:07:55 -07:00
|
|
|
@end
|