mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
![renovate[bot]](/assets/img/avatar_default.png)
* chore(deps): update all non-major dependencies * fix: correct breaking changes Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: sct <ryan@sct.dev>
10 lines
285 B
TypeScript
10 lines
285 B
TypeScript
import 'express-session';
|
|
|
|
// Declaration merging to apply our own types to SessionData
|
|
// See: (https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/express-session/index.d.ts#L23)
|
|
declare module 'express-session' {
|
|
interface SessionData {
|
|
userId: number;
|
|
}
|
|
}
|