encryption, code cleanup, nice types, bug fixes, and more
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
import { writable, type Writable } from 'svelte/store';
|
||||
import { ConnectionState } from '../types/websocket';
|
||||
|
||||
export let room: Writable<string | null> = writable(null);
|
||||
export let room: Writable<string | null> = writable(null);
|
||||
export let connectionState: Writable<ConnectionState> = writable(ConnectionState.DISCONNECTED);
|
||||
|
||||
Reference in New Issue
Block a user