UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

17 lines (16 loc) 379 B
export interface SessionConfiguration { secret: string; expiresIn: string; storage?: "memory" | "redis" | "database"; redisConfig?: { host: string; port: number; password?: string; }; databaseConfig?: { tableName: string; connection: string; }; secure?: boolean; sameSite?: "lax" | "strict" | "none"; }