UNPKG
@quixo3/prisma-session-store
Version:
latest (3.1.19)
3.1.19
3.1.18
3.1.17
3.1.16
3.1.13
3.1.12
3.1.11
3.1.10
3.1.9
3.1.8
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
2.0.0
1.1.2
1.1.1
1.1.0
0.4.0
0.2.0
0.1.9555
0.1.963
0.1.962
0.1.961
0.1.955
0.1.96
0.1.95
0.1.94
0.1.93
0.1.92
0.1.91
0.1.9
0.1.8
0.1.7
0.1.6
Prisma express-session store
github.com/kleydon/prisma-session-store
kleydon/prisma-session-store
@quixo3/prisma-session-store
/
dist
/
@types
/
sessions.d.ts
9 lines
(8 loc)
•
241 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
SessionData
}
from
'express-session'
;
/** * An object containing a list of sessions where the key is the * ID of the session and the value is the SessionData */
export
interface
ISessions
{ [
key
:
string
]:
SessionData
; }