Eslint files
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -14,4 +14,4 @@ export function loadSettings(path: string): Settings | null {
|
||||
export interface Settings {
|
||||
searchUrl: string;
|
||||
searchBar: boolean,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user