add sharemode

This commit is contained in:
sawka
2023-03-12 13:33:56 -07:00
parent d0138c2627
commit 5c0454e66f
+3
View File
@@ -1,11 +1,14 @@
import * as mobx from "mobx";
type ShareModeType = "local" | "private" | "view" | "shared";
type SessionDataType = {
sessionid : string,
name : string,
notifynum : number,
activescreenid : string,
sessionidx : number,
sharemode : ShareModeType,
archived? : boolean,
screens : ScreenDataType[],
remotes : RemoteInstanceType[],