@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
28 lines (27 loc) • 812 B
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/.
*/
/**
* Enum ImageResolution.
* @export
* @enum {string}
*/
export declare const ImageResolution: {
readonly MatchSource: "MatchSource";
readonly P144: "P144";
readonly P240: "P240";
readonly P360: "P360";
readonly P480: "P480";
readonly P720: "P720";
readonly P1080: "P1080";
readonly P1440: "P1440";
readonly P2160: "P2160";
};
export type ImageResolution = typeof ImageResolution[keyof typeof ImageResolution];