diff options
| author | Ritesh Ghosh <[email protected]> | 2023-08-13 19:48:44 +0530 |
|---|---|---|
| committer | Ritesh Ghosh <[email protected]> | 2023-08-13 19:48:44 +0530 |
| commit | de302d67fbe8e66ffaa1089b5c02e41a0380cb13 (patch) | |
| tree | 225d61aa971f0dc78a9ef580a909518e77465175 /src/models/controllers | |
| parent | e3e8e9422e3e944a2eade46973aef8cca0673a06 (diff) | |
| download | aniwatch-api-de302d67fbe8e66ffaa1089b5c02e41a0380cb13.tar.xz aniwatch-api-de302d67fbe8e66ffaa1089b5c02e41a0380cb13.zip | |
chore(controllerModels): updated controller types import export
Diffstat (limited to 'src/models/controllers')
| -rw-r--r-- | src/models/controllers/index.ts | 14 |
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, }; |
