interface SessionStore {
    get(): Promise<null | Session>;
    save(session: Session): Promise<void>;
}

Methods

Methods