Fix WatchlistItem mediaType union

This commit is contained in:
root
2026-04-03 22:49:26 -05:00
parent 8eb5dddd7b
commit b012ccb500

View File

@@ -8,7 +8,7 @@ export interface WatchlistItem {
id: number; id: number;
ratingKey: string; ratingKey: string;
tmdbId: number; tmdbId: number;
mediaType: 'movie' | 'tv'; mediaType: 'movie' | 'tv' | 'music' | 'book';
title: string; title: string;
} }