react-native-video/RCTVideo.h

17 lines
453 B
C
Raw Normal View History

#import "RCTView.h"
2015-04-08 02:58:00 -06:00
extern NSString *const RNVideoEventLoaded;
extern NSString *const RNVideoEventLoading;
extern NSString *const RNVideoEventProgress;
2015-04-08 16:15:57 -06:00
extern NSString *const RNVideoEventSeek;
2015-04-08 02:58:00 -06:00
extern NSString *const RNVideoEventLoadingError;
2015-04-10 20:57:37 -06:00
extern NSString *const RNVideoEventEnd;
@class RCTEventDispatcher;
2015-03-30 23:07:55 -06:00
@interface RCTVideo : UIView
- (instancetype)initWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher NS_DESIGNATED_INITIALIZER;
2015-03-30 23:07:55 -06:00
@end