RCTTVRemoteHandler.h 971 B

12345678910111213141516171819202122232425262728293031
  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. #import <UIKit/UIKit.h>
  8. extern NSString *const RCTTVRemoteEventMenu;
  9. extern NSString *const RCTTVRemoteEventPlayPause;
  10. extern NSString *const RCTTVRemoteEventSelect;
  11. extern NSString *const RCTTVRemoteEventLongPlayPause;
  12. extern NSString *const RCTTVRemoteEventLongSelect;
  13. extern NSString *const RCTTVRemoteEventLeft;
  14. extern NSString *const RCTTVRemoteEventRight;
  15. extern NSString *const RCTTVRemoteEventUp;
  16. extern NSString *const RCTTVRemoteEventDown;
  17. extern NSString *const RCTTVRemoteEventSwipeLeft;
  18. extern NSString *const RCTTVRemoteEventSwipeRight;
  19. extern NSString *const RCTTVRemoteEventSwipeUp;
  20. extern NSString *const RCTTVRemoteEventSwipeDown;
  21. @interface RCTTVRemoteHandler : NSObject
  22. @property (nonatomic, copy, readonly) NSDictionary *tvRemoteGestureRecognizers;
  23. @end