mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 13:24:33 +03:00
18 lines
431 B
TypeScript
18 lines
431 B
TypeScript
|
export enum AppState {
|
||
|
AppLoading,
|
||
|
ChatLoading,
|
||
|
Loading,
|
||
|
}
|
||
|
|
||
|
export enum ChatVisibilityState {
|
||
|
Hidden, // The chat is available but the user has hidden it
|
||
|
Visible, // The chat is available and visible
|
||
|
}
|
||
|
|
||
|
export enum ChatState {
|
||
|
Available, // Normal state
|
||
|
NotAvailable, // Chat features are not available
|
||
|
Loading, // Chat is connecting and loading history
|
||
|
Offline, // Chat is offline/disconnected for some reason
|
||
|
}
|