/** * ActionSchedule 到期执行器。 * * 关键点(中文) * - 只负责“把到点的 action schedule 任务执行掉并更新状态”。 * - 不负责调度入口、持久化初始化和轮询生命周期管理。 * - 到期后直接走 Plugin Registry Action 执行入口。 */ import type { PluginContext } from "../../types/plugin/PluginContext.js"; import type { ActionScheduleStore } from "../../plugin/core/ActionScheduleStore.js"; /** * 执行当前已到点的 pending 任务。 */ export declare function run_due_action_schedule_jobs(params: { context: PluginContext; store: ActionScheduleStore; }): Promise; //# sourceMappingURL=ActionScheduleExecutor.d.ts.map