Minor refactoring

This commit is contained in:
David Majdandžić
2023-03-28 04:08:07 +02:00
parent bb363deb2a
commit 4409a6fec8
4 changed files with 26 additions and 12 deletions

View File

@@ -0,0 +1,8 @@
export default class ClientStatus {
static readonly CONNECTING: string = "CONNECTING";
static readonly CONNECTED: string = "CONNECTED";
static readonly BUSY: string = "BUSY";
static readonly BINDING: string = "BINDING";
static readonly BOUND: string = "BOUND";
static readonly NOT_CONNECTED: string = "NOT CONNECTED";
}