import type { IScheduledTaskTime } from "./IScheduledTaskTime.js"; /** * Interface describing a scheduled task information. */ export interface IScheduledTaskInfo { /** * The information for the tasks. */ tasks: { [id: string]: IScheduledTaskTime[]; }; }