Files
smsgw-tester/src/Client/ClientStatus.ts
David Majdandžić 4409a6fec8 Minor refactoring
2023-03-28 04:08:07 +02:00

8 lines
343 B
TypeScript

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";
}