Pur this below code into your server.ts file or index.ts file where you create your app by using const app = express()
server.ts
index.ts
const app = express()
declare module "express-serve-static-core" { interface Request { user?: User; // user is our custom interface } }