mirror of
https://github.com/owncast/owncast.git
synced 2025-11-01 19:32:20 +08: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
|
|
}
|