mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-14 17:26:26 +01:00
22 lines
413 B
TypeScript
22 lines
413 B
TypeScript
export interface Settings {
|
|
searchUrl: string;
|
|
searchBar: boolean;
|
|
[key: string]: any;
|
|
}
|
|
|
|
export interface Config {
|
|
services: serviceItem[];
|
|
settings: Settings;
|
|
[key: string]: any;
|
|
}
|
|
|
|
export const ServiceTypes = ['Other', 'Sonarr', 'Radarr', 'Lidarr', 'qBittorrent', 'Plex', 'Emby'];
|
|
|
|
export interface serviceItem {
|
|
[x: string]: any;
|
|
name: string;
|
|
type: string;
|
|
url: string;
|
|
icon: string;
|
|
}
|