diff options
| author | Ritesh Ghosh <[email protected]> | 2023-11-22 13:43:09 +0530 |
|---|---|---|
| committer | Ritesh Ghosh <[email protected]> | 2023-11-22 13:43:09 +0530 |
| commit | 6573e8318abef3e4dbec4be5611421ff3418fd62 (patch) | |
| tree | a2c1855c68ea2c86dcf6b526e78812b3cfcead06 /src/config | |
| parent | 94dd071fe503da8a4bd3a2d04dcf851afd9db6c7 (diff) | |
| download | aniwatch-api-6573e8318abef3e4dbec4be5611421ff3418fd62.tar.xz aniwatch-api-6573e8318abef3e4dbec4be5611421ff3418fd62.zip | |
refactor: add strict type imports
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/notFoundHandler.ts | 2 |
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) => { |
