@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
62 lines (61 loc) • 2.33 kB
TypeScript
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Do not edit the class manually.
*
* Jellyfin API
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/**
* This exists simply to identify a set of known commands.
* @export
* @enum {string}
*/
export declare const GeneralCommandType: {
readonly MoveUp: "MoveUp";
readonly MoveDown: "MoveDown";
readonly MoveLeft: "MoveLeft";
readonly MoveRight: "MoveRight";
readonly PageUp: "PageUp";
readonly PageDown: "PageDown";
readonly PreviousLetter: "PreviousLetter";
readonly NextLetter: "NextLetter";
readonly ToggleOsd: "ToggleOsd";
readonly ToggleContextMenu: "ToggleContextMenu";
readonly Select: "Select";
readonly Back: "Back";
readonly TakeScreenshot: "TakeScreenshot";
readonly SendKey: "SendKey";
readonly SendString: "SendString";
readonly GoHome: "GoHome";
readonly GoToSettings: "GoToSettings";
readonly VolumeUp: "VolumeUp";
readonly VolumeDown: "VolumeDown";
readonly Mute: "Mute";
readonly Unmute: "Unmute";
readonly ToggleMute: "ToggleMute";
readonly SetVolume: "SetVolume";
readonly SetAudioStreamIndex: "SetAudioStreamIndex";
readonly SetSubtitleStreamIndex: "SetSubtitleStreamIndex";
readonly ToggleFullscreen: "ToggleFullscreen";
readonly DisplayContent: "DisplayContent";
readonly GoToSearch: "GoToSearch";
readonly DisplayMessage: "DisplayMessage";
readonly SetRepeatMode: "SetRepeatMode";
readonly ChannelUp: "ChannelUp";
readonly ChannelDown: "ChannelDown";
readonly Guide: "Guide";
readonly ToggleStats: "ToggleStats";
readonly PlayMediaSource: "PlayMediaSource";
readonly PlayTrailers: "PlayTrailers";
readonly SetShuffleQueue: "SetShuffleQueue";
readonly PlayState: "PlayState";
readonly PlayNext: "PlayNext";
readonly ToggleOsdMenu: "ToggleOsdMenu";
readonly Play: "Play";
readonly SetMaxStreamingBitrate: "SetMaxStreamingBitrate";
readonly SetPlaybackOrder: "SetPlaybackOrder";
};
export type GeneralCommandType = typeof GeneralCommandType[keyof typeof GeneralCommandType];