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