aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRitesh Ghosh <[email protected]>2023-08-02 13:43:41 +0530
committerRitesh Ghosh <[email protected]>2023-08-02 13:43:41 +0530
commit60042738d67645d0d5a5d7ccf67488ee4c5c135a (patch)
treef44022e8fac85b2539e53cef09f86a6dee0d67fb /src
parent4efe9c9b094d59809b91244f70b052d30a21db40 (diff)
downloadaniwatch-api-60042738d67645d0d5a5d7ccf67488ee4c5c135a.tar.xz
aniwatch-api-60042738d67645d0d5a5d7ccf67488ee4c5c135a.zip
feat: added all types export
Diffstat (limited to 'src')
-rw-r--r--src/models/index.ts18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/models/index.ts b/src/models/index.ts
new file mode 100644
index 0000000..517c6f2
--- /dev/null
+++ b/src/models/index.ts
@@ -0,0 +1,18 @@
+import {
+ Anime,
+ AnimeCategories,
+ Top10Anime,
+ Top10AnimeTimePeriod,
+ Servers,
+} from "./anime";
+
+import { ScrapedAnimeCategory } from "./parser";
+
+export {
+ Anime,
+ AnimeCategories,
+ Top10Anime,
+ Top10AnimeTimePeriod,
+ Servers,
+ ScrapedAnimeCategory,
+};