This commit is contained in:
Thomas "ajnart" Camlong
2022-04-30 21:51:37 +02:00
parent 023f3ca9e4
commit a13dad4d42
7 changed files with 74 additions and 81 deletions

View File

@@ -13,5 +13,5 @@ export function loadSettings(path: string): Settings | null {
export interface Settings {
searchUrl: string;
searchBar: boolean,
searchBar: boolean;
}

View File

@@ -2,6 +2,6 @@ import { serviceItem } from '../components/AppShelf/AppShelf.d';
export interface Config {
services: serviceItem[];
settings: {};
[key: string]: any;
settings: {};
[key: string]: any;
}