UNPKG

@mazzlabs/prisma-session-store-fix

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