req user typescript

Solutions on MaxInterview for req user typescript by the best coders in the world

showing results for - "req user typescript"
Vicente
20 Feb 2018
1// add this in your types.d.ts
2declare global {
3  namespace Express {
4    interface Request {
5      user: any
6    }
7  }
8}