mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-09 15:05:48 +01:00
26 lines
529 B
TypeScript
26 lines
529 B
TypeScript
import { type } from "os";
|
|
|
|
export interface Settings {
|
|
searchUrl: string;
|
|
searchBar: boolean;
|
|
[key: string]: any;
|
|
}
|
|
|
|
export interface Config {
|
|
services: serviceItem[];
|
|
settings: Settings;
|
|
}
|
|
|
|
export const ServiceTypeList = [
|
|
'Other', 'Sonarr', 'Radarr', 'Lidarr', 'qBittorrent', 'Plex', 'Emby'
|
|
]
|
|
export type ServiceType = 'Other' | 'Sonarr' | 'Radarr' | 'Lidarr' | 'qBittorrent' | 'Plex' | 'Emby';
|
|
|
|
export interface serviceItem {
|
|
[x: string]: any;
|
|
name: string;
|
|
type: string;
|
|
url: string;
|
|
icon: string;
|
|
}
|