Eslint files

This commit is contained in:
Thomas "ajnart" Camlong
2022-04-30 21:39:59 +02:00
parent 72458b8b63
commit 023f3ca9e4
5 changed files with 11 additions and 16 deletions

View File

@@ -1,9 +1,7 @@
import { serviceItem } from '../components/AppShelf/AppShelf.d';
export function pingQbittorrent(service: serviceItem): any {
console.log("Getting service.cookie for service: ", service);
if (!service.cookie)
service.cookie = "Test";
else
console.log(service.cookie);
console.log('Getting service.cookie for service: ', service);
if (!service.cookie) service.cookie = 'Test';
else console.log(service.cookie);
}

View File

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

View File

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