import type Database from 'better-sqlite3'; import type { HealthChecker } from '../health-checker.js'; import type { JobQueue } from '../job-queue.js'; import type { BatchSchedulerLogMethod } from '../handlers/batch-scheduler-run-context.js'; export interface BatchSchedulerHealthDeps { db: Database.Database | null; healthChecker: HealthChecker; jobQueue: JobQueue; maxConcurrentJobs: number; log: BatchSchedulerLogMethod; } /** * 스케줄러 헬스체크 */ export declare function checkBatchSchedulerHealth(deps: BatchSchedulerHealthDeps): Promise; //# sourceMappingURL=batch-scheduler-health.d.ts.map