Online list as objects {id, slug}, Message.actor support

This commit is contained in:
Markov 2026-02-27 09:20:50 +01:00
parent 4eeba5a81e
commit fd3e454dff

View File

@ -14,7 +14,7 @@ class WSClient {
private authenticated = false;
private _lobbyId: string | null = null;
private _projects: Array<{ id: string; slug: string; name: string }> = [];
private _online: string[] = [];
private _online: Array<{id: string; slug: string}> = [];
get lobbyId() { return this._lobbyId; }
get projects() { return this._projects; }