2
2
mirror of https://github.com/m1k1o/neko.git synced 2024-07-24 14:40:50 +12:00

add plugins to state.

This commit is contained in:
Miroslav Šedivý 2023-05-20 18:27:22 +02:00
parent 298f1b4c97
commit 147c94958e

@ -121,6 +121,7 @@ export interface MemberProfile {
can_access_clipboard: boolean can_access_clipboard: boolean
sends_inactive_cursor: boolean sends_inactive_cursor: boolean
can_see_inactive_cursors: boolean can_see_inactive_cursors: boolean
plugins?: Record<string, any>
} }
export interface SessionState { export interface SessionState {
@ -148,6 +149,7 @@ export interface Settings {
implicit_hosting: boolean implicit_hosting: boolean
inactive_cursors: boolean inactive_cursors: boolean
merciful_reconnect: boolean merciful_reconnect: boolean
plugins?: Record<string, any>
} }
///////////////////////////// /////////////////////////////