From e334851c2eb04cbd50854d9bb5ad6e2804be050c Mon Sep 17 00:00:00 2001 From: "Thomas \"ajnart\" Camlong" Date: Sat, 30 Apr 2022 21:37:12 +0200 Subject: [PATCH] Edit types --- components/AppShelf/AppShelf.d.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/components/AppShelf/AppShelf.d.ts b/components/AppShelf/AppShelf.d.ts index 2fd16cff3..612145af3 100644 --- a/components/AppShelf/AppShelf.d.ts +++ b/components/AppShelf/AppShelf.d.ts @@ -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; -} \ No newline at end of file +}