summary refs log tree commit diff
path: root/api/src/global.d.ts
blob: 3eb70f44aa1ef88d849c4a3b48657de6d53d3fbd (plain) (blame)
1
2
3
4
5
6
7
8
declare global {
    namespace Express {
        interface Request {
            user_id: any;
            token: any;
        }
    }
}