mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-12 08:25:47 +01:00
fix: types
This commit is contained in:
@@ -70,8 +70,19 @@ export const ServiceTypeList = [
|
|||||||
'Sonarr',
|
'Sonarr',
|
||||||
'qBittorrent',
|
'qBittorrent',
|
||||||
'Transmission',
|
'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 {
|
export interface serviceItem {
|
||||||
id: string;
|
id: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user