UNPKG
@mazzlabs/prisma-session-store-fix
Version:
latest (3.1.8)
3.1.8
Prisma express-session store
github.com/kleydon/prisma-session-store
kleydon/prisma-session-store
@mazzlabs/prisma-session-store-fix
/
dist
/
@types
/
sessions.d.ts
9 lines
(8 loc)
•
249 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
; }