mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
10 lines
270 B
TypeScript
10 lines
270 B
TypeScript
// Authentication middleware has user property added to the request object.
|
|
// https://stackoverflow.com/a/62631740/1168342
|
|
declare namespace Express {
|
|
export interface Request {
|
|
user: any;
|
|
}
|
|
export interface Response {
|
|
user: any;
|
|
}
|
|
}
|