aboutsummaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authorRitesh Ghosh <[email protected]>2023-11-22 13:43:09 +0530
committerRitesh Ghosh <[email protected]>2023-11-22 13:43:09 +0530
commit6573e8318abef3e4dbec4be5611421ff3418fd62 (patch)
treea2c1855c68ea2c86dcf6b526e78812b3cfcead06 /src/config
parent94dd071fe503da8a4bd3a2d04dcf851afd9db6c7 (diff)
downloadaniwatch-api-6573e8318abef3e4dbec4be5611421ff3418fd62.tar.xz
aniwatch-api-6573e8318abef3e4dbec4be5611421ff3418fd62.zip
refactor: add strict type imports
Diffstat (limited to 'src/config')
-rw-r--r--src/config/notFoundHandler.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/notFoundHandler.ts b/src/config/notFoundHandler.ts
index 8fb11d6..a372e8e 100644
--- a/src/config/notFoundHandler.ts
+++ b/src/config/notFoundHandler.ts
@@ -1,4 +1,4 @@
-import { RequestHandler } from "express";
+import type { RequestHandler } from "express";
import createHttpError from "http-errors";
const notFoundHandler: RequestHandler = (req, res, next) => {