diff options
| author | Ritesh Ghosh <[email protected]> | 2024-03-25 19:00:18 +0530 |
|---|---|---|
| committer | Ritesh Ghosh <[email protected]> | 2024-03-25 19:00:18 +0530 |
| commit | be672c542262b4ea494b960d05d8dc0447885997 (patch) | |
| tree | cc93b326261997759dac0474f856ce0b058db541 /src/types | |
| parent | ede94ab09213bd0c2829ab25050b62e68f6edaeb (diff) | |
| download | aniwatch-api-be672c542262b4ea494b960d05d8dc0447885997.tar.xz aniwatch-api-be672c542262b4ea494b960d05d8dc0447885997.zip | |
refactor: update exports
Diffstat (limited to 'src/types')
| -rw-r--r-- | src/types/controllers/index.ts | 45 |
1 files changed, 10 insertions, 35 deletions
diff --git a/src/types/controllers/index.ts b/src/types/controllers/index.ts index fab25b6..14876e2 100644 --- a/src/types/controllers/index.ts +++ b/src/types/controllers/index.ts @@ -1,35 +1,10 @@ -import type { - GenreAnimePathParams, - GenreAnimeQueryParams, -} from "./animeGenre.js"; -import type { - CategoryAnimePathParams, - CategoryAnimeQueryParams, -} from "./animeCategory.js"; -import type { - AnimeProducerPathParams, - AnimeProducerQueryParams, -} from "./animeProducer.js"; -import type { AnimeSearchQueryParams } from "./animeSearch.js"; -import type { AnimeEpisodePathParams } from "./animeEpisodes.js"; -import type { EpisodeServersQueryParams } from "./episodeServers.js"; -import type { AnimeAboutInfoQueryParams } from "./animeAboutInfo.js"; -import type { AnimeEpisodeSrcsQueryParams } from "./animeEpisodeSrcs.js"; -import type { EstimatedScheduleQueryParams } from "./estimatedSchedule.js"; -import type { AnimeSearchSuggestQueryParams } from "./animeSearchSuggestion.js"; - -export type { - GenreAnimePathParams, - GenreAnimeQueryParams, - AnimeSearchQueryParams, - AnimeEpisodePathParams, - AnimeProducerPathParams, - CategoryAnimePathParams, - AnimeProducerQueryParams, - CategoryAnimeQueryParams, - AnimeAboutInfoQueryParams, - EpisodeServersQueryParams, - AnimeEpisodeSrcsQueryParams, - EstimatedScheduleQueryParams, - AnimeSearchSuggestQueryParams, -}; +export type * from "./animeGenre.js"; +export type * from "./animeCategory.js"; +export type * from "./animeProducer.js"; +export type * from "./animeSearch.js"; +export type * from "./animeEpisodes.js"; +export type * from "./episodeServers.js"; +export type * from "./animeAboutInfo.js"; +export type * from "./animeEpisodeSrcs.js"; +export type * from "./estimatedSchedule.js"; +export type * from "./animeSearchSuggestion.js"; |
