Files
kidsai/html/rechner/node_modules/node-cron/dist/esm/task-registry.d.ts
2025-06-24 15:43:32 +02:00

10 lines
304 B
TypeScript

import { ScheduledTask } from "./tasks/scheduled-task";
export declare class TaskRegistry {
add(task: ScheduledTask): void;
get(taskId: string): ScheduledTask | undefined;
remove(task: ScheduledTask): void;
all(): ScheduledTask[];
has(taskId: string): boolean;
killAll(): void;
}