5 lines
216 B
TypeScript
5 lines
216 B
TypeScript
export default class CenterStatus {
|
|
static readonly WAITING_CONNECTION: string = "WAITING CONNECTION";
|
|
static readonly CONNECTING: string = "CONNECTING";
|
|
static readonly CONNECTED: string = "CONNECTED";
|
|
} |