aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/models/controllers/index.ts14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/models/controllers/index.ts b/src/models/controllers/index.ts
index fe8e801..707f915 100644
--- a/src/models/controllers/index.ts
+++ b/src/models/controllers/index.ts
@@ -1,16 +1,24 @@
-import { AnimeSearchQueryParams } from "./animeSearch";
-import { AnimeAboutInfoQueryParams } from "./animeAboutInfo";
-import { GenreAnimePathParams, GenreAnimeQueryParams } from "./animeGenre";
import {
CategoryAnimePathParams,
CategoryAnimeQueryParams,
} from "./animeCategory";
+import {
+ AnimeProducerPathParams,
+ AnimeProducerQueryParams,
+} from "./animeProducer";
+import { AnimeSearchQueryParams } from "./animeSearch";
+import { AnimeAboutInfoQueryParams } from "./animeAboutInfo";
+import { AnimeSearchSuggestQueryParams } from "./animeSearchSuggestion";
+import { GenreAnimePathParams, GenreAnimeQueryParams } from "./animeGenre";
export {
GenreAnimePathParams,
GenreAnimeQueryParams,
AnimeSearchQueryParams,
+ AnimeProducerPathParams,
CategoryAnimePathParams,
+ AnimeProducerQueryParams,
CategoryAnimeQueryParams,
AnimeAboutInfoQueryParams,
+ AnimeSearchSuggestQueryParams,
};