UNPKG

@jellyfin/sdk

Version:
32 lines (31 loc) 916 B
/** * 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 ImageType. * @export * @enum {string} */ export declare const ImageType: { readonly Primary: "Primary"; readonly Art: "Art"; readonly Backdrop: "Backdrop"; readonly Banner: "Banner"; readonly Logo: "Logo"; readonly Thumb: "Thumb"; readonly Disc: "Disc"; readonly Box: "Box"; readonly Screenshot: "Screenshot"; readonly Menu: "Menu"; readonly Chapter: "Chapter"; readonly BoxRear: "BoxRear"; readonly Profile: "Profile"; }; export type ImageType = typeof ImageType[keyof typeof ImageType];