diff --git a/src/types/controllers/animeSearch.ts b/src/types/controllers/animeSearch.ts index 20f4680..fccb243 100644 --- a/src/types/controllers/animeSearch.ts +++ b/src/types/controllers/animeSearch.ts @@ -1,4 +1,20 @@ export type AnimeSearchQueryParams = { q?: string; page?: string; + type?: string; + status?: string; + rated?: string; + score?: string; + season?: string; + language?: string; + start_date?: string; + end_date?: string; + sort?: string; + genres?: string; }; + +export type SearchFilters = Omit; + +export type FilterKeys = Partial< + keyof Omit +>;