Files
Homarr/components/AppShelf/AppShelf.d.ts
Thomas "ajnart" Camlong e334851c2e Edit types
2022-04-30 21:37:12 +02:00

18 lines
240 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;
}