📅  最后修改于: 2022-03-11 14:48:17.934000             🧑  作者: Mango
// create file custom.d.ts and declare the following
declare namespace Express {
export interface Request {
user: any;
}
export interface Response {
user: any;
}
}