Work around breaking change in @types/express-sesssion

Fixes #927
This commit is contained in:
rijkvanzanten
2020-11-11 09:41:25 -05:00
parent 514b26bb0b
commit 3654da7fa9
4 changed files with 113 additions and 99 deletions

8
api/src/types/express-session.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
import * as expressSession from 'express-session';
declare module 'express-session' {
interface SessionData {
redirect: string;
grant: any;
}
}