Edit types

This commit is contained in:
Thomas "ajnart" Camlong
2022-04-30 21:37:12 +02:00
parent 98c9c1ef6a
commit e334851c2e

View File

@@ -3,13 +3,15 @@ export const ServiceTypes = [
'Sonarr',
'Radarr',
'Lidarr',
'qBittorrent',
'Plex',
'Emby',
]
];
export interface serviceItem {
[x: string]: any;
name: string;
type: ServiceTypes;
url: string;
icon: string;
}
}