From c0ecc3d4c6bdf412f9fb5e9230386349279b4a56 Mon Sep 17 00:00:00 2001 From: MauriceNino Date: Mon, 27 Jun 2022 21:29:44 +0200 Subject: [PATCH] fix: types --- src/tools/types.ts | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/tools/types.ts b/src/tools/types.ts index 5146c30d5..72b35bc56 100644 --- a/src/tools/types.ts +++ b/src/tools/types.ts @@ -70,8 +70,19 @@ export const ServiceTypeList = [ 'Sonarr', 'qBittorrent', 'Transmission', -] as const; -export type ServiceType = typeof ServiceTypeList[number]; +]; +export type ServiceType = + | 'Other' + | 'Emby' + | 'Dash.' + | 'Deluge' + | 'Lidarr' + | 'Plex' + | 'Radarr' + | 'Readarr' + | 'Sonarr' + | 'qBittorrent' + | 'Transmission'; export interface serviceItem { id: string;