UNPKG

@dazejs/framework

Version:

Daze.js - A powerful web framework for Node.js

12 lines (11 loc) 317 B
export default class RedisSessionStore { app: any; redisConfig: any; _client: any; constructor(app: any); getRedisConfigure(): any; get client(): any; get(id: string): Promise<any>; set(id: string, sess: string, maxAge?: number): Promise<any>; destroy(id: string): Promise<any>; }