Files
Homarr/components/AppShelf/AppShelf.d.ts
Thomas "ajnart" Camlong a13dad4d42 Prettier
2022-04-30 21:51:37 +02:00

10 lines
223 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;
}