UNPKG

@sanpuru/prisma-session-store

Version:
9 lines (8 loc) 239 B
/// <reference types="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]: Express.SessionData; }