Update AppShelf

This commit is contained in:
Aj - Thomas
2022-04-25 23:33:32 +02:00
parent a4fcea76d4
commit 5cd8dcdd52
4 changed files with 281 additions and 95 deletions

15
components/AppShelf/AppShelf.d.ts vendored Normal file
View File

@@ -0,0 +1,15 @@
export const ServiceTypes = [
'Other',
'Sonarr',
'Radarr',
'Lidarr',
'Plex',
'Emby',
]
export interface serviceItem {
name: string;
type: ServiceTypes;
url: string;
icon: string;
}