builder / lib /scheduler /types.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 2)
391c43e verified
Raw
History Blame Contribute Delete
253 Bytes
export interface SchedulerTask {
type: string;
execute: () => Promise<void>;
enabled: boolean;
}
export interface SchedulerOptions {
pollIntervalMs?: number; // default 30000
onError?: (taskType: string, error: Error) => void;
}