mirror of
https://github.com/GithubOrgProjectPiza/server.git
synced 2026-09-04 00:26:07 +02:00
8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
import { authJwt } from "./controller/auth.controller";
|
|
|
|
declare module "express-serve-static-core" {
|
|
interface Request {
|
|
auth?: authJwt & { isAuthenthicated: boolean };
|
|
}
|
|
}
|