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) { function runNotesWithLabel(runAttrValue: string) {
const instanceName = config.General ? config.General.instanceName : null; const instanceName = config.General.instanceName;
const currentHours = new Date().getHours(); const currentHours = new Date().getHours();
const notes = attributeService.getNotesWithLabel("run", runAttrValue); const notes = attributeService.getNotesWithLabel("run", runAttrValue);

View File

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