jwt auth handling

This commit is contained in:
2026-05-24 04:38:08 -05:00
parent b1625d471e
commit 72b5873cf2
4 changed files with 135 additions and 13 deletions
+9
View File
@@ -0,0 +1,9 @@
import JsonWebToken from './src/types/JsonWebToken.ts';
export { }
declare module "express-serve-static-core" {
interface Request {
jwt: JsonWebToken;
}
}