Files
Homarr/components/AppShelf/AppShelf.d.ts
2022-04-25 23:33:32 +02:00

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;
}