error TS2339: Property 'key' does not exist on type 'Session & Partial<SessionData>'. code example
Example: Property 'isAuth' does not exist on type 'Request'
// create file custom.d.ts and declare the following
declare namespace Express {
export interface Request {
user: any;
}
export interface Response {
user: any;
}
}