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

10 lines
223 B
TypeScript
Raw Normal View History

2022-04-30 21:51:37 +02:00
export const ServiceTypes = ['Other', 'Sonarr', 'Radarr', 'Lidarr', 'qBittorrent', 'Plex', 'Emby'];
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
}