mirror of
https://github.com/BreizhHardware/jellyseerr.git
synced 2026-01-19 00:57:30 +01:00
13 lines
211 B
TypeScript
13 lines
211 B
TypeScript
export interface GenreSliderItem {
|
|
id: number;
|
|
name: string;
|
|
backdrops: string[];
|
|
}
|
|
|
|
export interface WatchlistItem {
|
|
ratingKey: string;
|
|
tmdbId: number;
|
|
mediaType: 'movie' | 'tv';
|
|
title: string;
|
|
}
|