fix(services): fix type errors

This commit is contained in:
Panagiotis Papadopoulos 2025-01-24 00:02:45 +01:00
parent 85c6764864
commit 8778ca5f6c
2 changed files with 3 additions and 4 deletions

View File

@ -19,7 +19,7 @@ function getRunAtHours(note: BNote): number[] {
}
function runNotesWithLabel(runAttrValue: string) {
const instanceName = config.General ? config.General.instanceName : null;
const instanceName = config.General.instanceName;
const currentHours = new Date().getHours();
const notes = attributeService.getNotesWithLabel("run", runAttrValue);

View File

@ -1,7 +1,6 @@
"use strict";
import optionService from "./options.js";
import type { OptionNames } from "./options_interface.js";
import config from "./config.js";
/*
@ -11,8 +10,8 @@ import config from "./config.js";
* to live sync server.
*/
function get(name: OptionNames) {
return (config["Sync"] && config["Sync"][name]) || optionService.getOption(name);
function get(name: keyof typeof config.Sync) {
return (config["Sync"] && config["Sync"][name]) || optionService.getOption(name);
}
export default {