6 lines
118 B
TypeScript
6 lines
118 B
TypeScript
export enum MediaServerType {
|
|
PLEX = 1,
|
|
JELLYFIN, //also works for emby (identical APIs, etc)
|
|
NOT_CONFIGURED,
|
|
}
|