6 lines
98 B
TypeScript
6 lines
98 B
TypeScript
declare namespace Express {
|
|
interface Request {
|
|
user?: any;
|
|
query?: any;
|
|
}
|
|
} |