jellyfish-web/src/utils/jellyfin-apiclient/ConnectionState.ts
2022-10-28 00:59:34 -04:00

10 lines
296 B
TypeScript

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