mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 07:25:48 +01:00
18 lines
240 B
TypeScript
18 lines
240 B
TypeScript
export const ServiceTypes = [
|
|
'Other',
|
|
'Sonarr',
|
|
'Radarr',
|
|
'Lidarr',
|
|
'qBittorrent',
|
|
'Plex',
|
|
'Emby',
|
|
];
|
|
|
|
export interface serviceItem {
|
|
[x: string]: any;
|
|
name: string;
|
|
type: ServiceTypes;
|
|
url: string;
|
|
icon: string;
|
|
}
|