mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
8 lines
103 B
TypeScript
8 lines
103 B
TypeScript
export enum DataStatus {
|
|
Initialized = -1,
|
|
Loading = 0,
|
|
Error = 1,
|
|
Loaded = 2,
|
|
Warning = 3
|
|
}
|