add stats to session state.

This commit is contained in:
Miroslav Šedivý 2023-05-15 00:47:34 +02:00
parent 0f9679d6d6
commit da252dfd31

View File

@ -125,7 +125,11 @@ export interface MemberProfile {
export interface SessionState {
is_connected: boolean
connected_since?: Date
not_connected_since?: Date
is_watching: boolean
watching_since?: Date
not_watching_since?: Date
}
export interface Session {