feat: add series

This commit is contained in:
2023-08-07 14:44:04 +02:00
parent 990db3ae50
commit 7390d35a98
16 changed files with 275 additions and 23 deletions

View File

@@ -6,6 +6,10 @@ export function searchMovie(query: string) {
return moviedb.searchMovie({ query });
}
export function searchTVShow(query: string) {
return moviedb.searchTv({ query });
}
export function getMovie(id: number) {
return moviedb.movieInfo({ id });
}