UNPKG

@jellyfin/sdk

Version:
44 lines (43 loc) 1.39 kB
/** * 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/. */ /** * The person kind. * @export * @enum {string} */ export declare const PersonKind: { readonly Unknown: "Unknown"; readonly Actor: "Actor"; readonly Director: "Director"; readonly Composer: "Composer"; readonly Writer: "Writer"; readonly GuestStar: "GuestStar"; readonly Producer: "Producer"; readonly Conductor: "Conductor"; readonly Lyricist: "Lyricist"; readonly Arranger: "Arranger"; readonly Engineer: "Engineer"; readonly Mixer: "Mixer"; readonly Remixer: "Remixer"; readonly Creator: "Creator"; readonly Artist: "Artist"; readonly AlbumArtist: "AlbumArtist"; readonly Author: "Author"; readonly Illustrator: "Illustrator"; readonly Penciller: "Penciller"; readonly Inker: "Inker"; readonly Colorist: "Colorist"; readonly Letterer: "Letterer"; readonly CoverArtist: "CoverArtist"; readonly Editor: "Editor"; readonly Translator: "Translator"; }; export type PersonKind = typeof PersonKind[keyof typeof PersonKind];