chore: lint

This commit is contained in:
Alexis Tyler
2021-06-30 23:13:54 +09:30
parent 4fd288616c
commit 338751339e
+4 -1
View File
@@ -83,7 +83,10 @@ export class ApiManager extends EventEmitter {
// Load UPC + notifier keys
log.debug('Loading service API keys...');
const myserversConfigFile = loadState<{ upc: { apikey: string }, notifier: { apikey: string } }>(configPath);
const myserversConfigFile = loadState<{
upc: { apikey: string };
notifier: { apikey: string };
}>(configPath);
const upcApiKey = myserversConfigFile.upc.apikey;
const notifierApiKey = myserversConfigFile.notifier.apikey;