mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-03 20:15:57 +01:00
10 lines
223 B
TypeScript
10 lines
223 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;
|
|
}
|