fix(ts): add strict file & type imports

This commit is contained in:
Ritesh Ghosh
2023-11-22 13:48:06 +05:30
parent bee44369f1
commit 3a414555f2
+2 -2
View File
@@ -1,4 +1,4 @@
import { Router, IRouter } from "express";
import { Router, type IRouter } from "express";
import {
getGenreAnime,
getAnimeSearch,
@@ -10,7 +10,7 @@ import {
getAnimeAboutInfo,
getAnimeEpisodeSources,
getAnimeSearchSuggestion,
} from "../controllers";
} from "../controllers/index.js";
const router: IRouter = Router();