UNPKG

972 Btext/x-cView Raw
1/*
2 * Copyright (c) Facebook, Inc. and its affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8#import <UIKit/UIKit.h>
9
10
11extern NSString *const RCTTVRemoteEventMenu;
12extern NSString *const RCTTVRemoteEventPlayPause;
13extern NSString *const RCTTVRemoteEventSelect;
14
15extern NSString *const RCTTVRemoteEventLongPlayPause;
16extern NSString *const RCTTVRemoteEventLongSelect;
17
18extern NSString *const RCTTVRemoteEventLeft;
19extern NSString *const RCTTVRemoteEventRight;
20extern NSString *const RCTTVRemoteEventUp;
21extern NSString *const RCTTVRemoteEventDown;
22
23extern NSString *const RCTTVRemoteEventSwipeLeft;
24extern NSString *const RCTTVRemoteEventSwipeRight;
25extern NSString *const RCTTVRemoteEventSwipeUp;
26extern NSString *const RCTTVRemoteEventSwipeDown;
27
28@interface RCTTVRemoteHandler : NSObject
29
30@property (nonatomic, copy, readonly) NSDictionary *tvRemoteGestureRecognizers;
31
32@end