This commit is contained in:
Felix Kaspar 2024-05-27 21:01:24 +02:00
parent 331360098f
commit 9d540d6aa2
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,5 @@
declare namespace Express {
interface User {
id?: number;
}
}

View File

@ -46,4 +46,5 @@ export function initialize(passport: typeof import("passport")) {
done(err, user);
});
});
}
}