mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-09 06:55:51 +01:00
15 lines
201 B
TypeScript
15 lines
201 B
TypeScript
export const ServiceTypes = [
|
|
'Other',
|
|
'Sonarr',
|
|
'Radarr',
|
|
'Lidarr',
|
|
'Plex',
|
|
'Emby',
|
|
]
|
|
|
|
export interface serviceItem {
|
|
name: string;
|
|
type: ServiceTypes;
|
|
url: string;
|
|
icon: string;
|
|
} |