Refactored and cleaned up SeriesPage data fetching

This commit is contained in:
Aleksi Lassila
2023-09-01 13:52:56 +03:00
parent 3234019dcb
commit b44d794c08
15 changed files with 298 additions and 135 deletions

View File

@@ -1 +1,6 @@
export type TitleType = 'movie' | 'series';
export type TitleId = {
id: number;
provider: 'tmdb' | 'tvdb';
type: TitleType;
};