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

18 lines
240 B
TypeScript
Raw Normal View History

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