refactor typów danych

This commit is contained in:
2023-11-10 15:04:49 +01:00
parent e82b4b8817
commit f8b4ce103f
84 changed files with 1011 additions and 1173 deletions
+19
View File
@@ -0,0 +1,19 @@
export namespace Status {
export enum ActiveDispatcher {
INVALID = -2,
UNKNOWN = -1,
AFK = 1,
ENDING = 2,
NO_SPACE = 3,
UNAVAILABLE = 4,
NOT_LOGGED_IN = 5
}
export enum Data {
Initialized = -1,
Loading = 0,
Error = 1,
Loaded = 2,
Warning = 3
}
}