39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
|
/* tslint:disable */
|
||
|
/* eslint-disable */
|
||
|
/**
|
||
|
* Jellyfin API
|
||
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
||
|
*
|
||
|
* The version of the OpenAPI document: 10.8.9
|
||
|
*
|
||
|
*
|
||
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||
|
* https://openapi-generator.tech
|
||
|
* Do not edit the class manually.
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
* An enum representing the axis that should be scrolled.
|
||
|
* @export
|
||
|
*/
|
||
|
export const ScrollDirection = {
|
||
|
Horizontal: 'Horizontal',
|
||
|
Vertical: 'Vertical'
|
||
|
} as const;
|
||
|
export type ScrollDirection = typeof ScrollDirection[keyof typeof ScrollDirection];
|
||
|
|
||
|
|
||
|
export function ScrollDirectionFromJSON(json: any): ScrollDirection {
|
||
|
return ScrollDirectionFromJSONTyped(json, false);
|
||
|
}
|
||
|
|
||
|
export function ScrollDirectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScrollDirection {
|
||
|
return json as ScrollDirection;
|
||
|
}
|
||
|
|
||
|
export function ScrollDirectionToJSON(value?: ScrollDirection | null): any {
|
||
|
return value as any;
|
||
|
}
|
||
|
|