UNPKG

@quixo3/prisma-session-store

Version:
9 lines (8 loc) 241 B
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; }