@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
67 lines (66 loc) • 1.5 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/.
*/
import type { ImageType } from './image-type';
/**
* Class ImageInfo.
* @export
* @interface ImageInfo
*/
export interface ImageInfo {
/**
*
* @type {ImageType}
* @memberof ImageInfo
*/
'ImageType'?: ImageType;
/**
* Gets or sets the index of the image.
* @type {number}
* @memberof ImageInfo
*/
'ImageIndex'?: number | null;
/**
* Gets or sets the image tag.
* @type {string}
* @memberof ImageInfo
*/
'ImageTag'?: string | null;
/**
* Gets or sets the path.
* @type {string}
* @memberof ImageInfo
*/
'Path'?: string | null;
/**
* Gets or sets the blurhash.
* @type {string}
* @memberof ImageInfo
*/
'BlurHash'?: string | null;
/**
* Gets or sets the height.
* @type {number}
* @memberof ImageInfo
*/
'Height'?: number | null;
/**
* Gets or sets the width.
* @type {number}
* @memberof ImageInfo
*/
'Width'?: number | null;
/**
* Gets or sets the size.
* @type {number}
* @memberof ImageInfo
*/
'Size'?: number;
}