12 lines
152 B
TypeScript
12 lines
152 B
TypeScript
export enum MediaServerType {
|
|
PLEX = 1,
|
|
JELLYFIN,
|
|
EMBY,
|
|
NOT_CONFIGURED,
|
|
}
|
|
|
|
export enum ServerType {
|
|
JELLYFIN = 'Jellyfin',
|
|
EMBY = 'Emby',
|
|
}
|