mirror of
https://github.com/detleph/server.git
synced 2026-09-04 08:36:06 +02:00
8 lines
202 B
TypeScript
8 lines
202 B
TypeScript
import { AuthJWTPayload } from "./Controllers/admin_auth.controller";
|
|
|
|
declare module "express-serve-static-core" {
|
|
interface Request {
|
|
auth?: AuthJWTPayload & { isAuthenticated: boolean };
|
|
}
|
|
}
|