/*
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

#import "RCTTVRemoteHandlerConstants.h"

RCTTVRemoteEvent const RCTTVRemoteEventMenu = @"menu";
RCTTVRemoteEvent const RCTTVRemoteEventPlayPause = @"playPause";
RCTTVRemoteEvent const RCTTVRemoteEventSelect = @"select";

RCTTVRemoteEvent const RCTTVRemoteEventLongPlayPause = @"longPlayPause";
RCTTVRemoteEvent const RCTTVRemoteEventLongSelect = @"longSelect";
RCTTVRemoteEvent const RCTTVRemoteEventLongUp = @"longUp";
RCTTVRemoteEvent const RCTTVRemoteEventLongDown = @"longDown";
RCTTVRemoteEvent const RCTTVRemoteEventLongLeft = @"longLeft";
RCTTVRemoteEvent const RCTTVRemoteEventLongRight = @"longRight";

RCTTVRemoteEvent const RCTTVRemoteEventLeft = @"left";
RCTTVRemoteEvent const RCTTVRemoteEventRight = @"right";
RCTTVRemoteEvent const RCTTVRemoteEventUp = @"up";
RCTTVRemoteEvent const RCTTVRemoteEventDown = @"down";

RCTTVRemoteEvent const RCTTVRemoteEventPageUp = @"pageUp";
RCTTVRemoteEvent const RCTTVRemoteEventPageDown = @"pageDown";

RCTTVRemoteEvent const RCTTVRemoteEventSwipeLeft = @"swipeLeft";
RCTTVRemoteEvent const RCTTVRemoteEventSwipeRight = @"swipeRight";
RCTTVRemoteEvent const RCTTVRemoteEventSwipeUp = @"swipeUp";
RCTTVRemoteEvent const RCTTVRemoteEventSwipeDown = @"swipeDown";

RCTTVRemoteEvent const RCTTVRemoteEventPan = @"pan";
