summaryrefslogtreecommitdiff
path: root/backend/src/types/express.d.ts
blob: 7e93345228c819bcf2a68776e4d85cc500d51f33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import type { AuthorizedUser } from "./user.js";

declare global {
    namespace Express {
        interface Request {
            user?: AuthorizedUser;
        }
    }
}

export {};