aboutsummaryrefslogtreecommitdiff
path: root/src/models/controllers/index.ts
blob: 385c18b0217b41aaee39ffccf7532d230112a31b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import {
  CategoryAnimePathParams,
  CategoryAnimeQueryParams,
} from "./animeCategory";
import {
  AnimeProducerPathParams,
  AnimeProducerQueryParams,
} from "./animeProducer";
import { AnimeSearchQueryParams } from "./animeSearch";
import { AnimeEpisodePathParams } from "./animeEpisodes";
import { AnimeAboutInfoQueryParams } from "./animeAboutInfo";
import { AnimeEpisodeSrcsQueryParams } from "./animeEpisodeSrcs";
import { AnimeSearchSuggestQueryParams } from "./animeSearchSuggestion";
import { GenreAnimePathParams, GenreAnimeQueryParams } from "./animeGenre";

export {
  GenreAnimePathParams,
  GenreAnimeQueryParams,
  AnimeSearchQueryParams,
  AnimeEpisodePathParams,
  AnimeProducerPathParams,
  CategoryAnimePathParams,
  AnimeProducerQueryParams,
  CategoryAnimeQueryParams,
  AnimeAboutInfoQueryParams,
  AnimeEpisodeSrcsQueryParams,
  AnimeSearchSuggestQueryParams,
};