mirror of
https://github.com/ajnart/homarr.git
synced 2026-05-05 22:07:54 +02: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;
|
|
} |