Files
Homarr/components/AppShelf/AppShelf.d.ts

15 lines
201 B
TypeScript
Raw Normal View History

2022-04-25 23:33:32 +02:00
export const ServiceTypes = [
'Other',
'Sonarr',
'Radarr',
'Lidarr',
'Plex',
'Emby',
]
export interface serviceItem {
name: string;
type: ServiceTypes;
url: string;
icon: string;
}