1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/utils/jellyfin-apiclient/ConnectionState.ts

11 lines
296 B
TypeScript
Raw Normal View History

/**
* Server state values for a connected server used by jellyfin-apiclient.
*/
export enum ConnectionState {
SignedIn = 'SignedIn',
ServerSignIn = 'ServerSignIn',
ServerSelection = 'ServerSelection',
ServerUpdateNeeded = 'ServerUpdateNeeded',
Unavailable = 'Unavailable'
}