mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
21 lines
355 B
TypeScript
21 lines
355 B
TypeScript
export interface GenreSliderItem {
|
|
id: number;
|
|
name: string;
|
|
backdrops: string[];
|
|
}
|
|
|
|
export interface WatchlistItem {
|
|
id: number;
|
|
ratingKey: string;
|
|
tmdbId: number;
|
|
mediaType: 'movie' | 'tv';
|
|
title: string;
|
|
}
|
|
|
|
export interface WatchlistResponse {
|
|
page: number;
|
|
totalPages: number;
|
|
totalResults: number;
|
|
results: WatchlistItem[];
|
|
}
|