/** * ActionSchedule 时间解析工具。 * * 关键点(中文) * - 统一解析 plugin action 通用 `--delay` / `--time` 参数。 * - 输出统一毫秒时间戳,供 command 请求解析与持久化层复用。 * - 该模块只处理“action 延迟执行时间”,不表达独立 schedule plugin。 */ /** * 解析绝对执行时间。 * * 支持格式(中文) * - Unix 时间戳秒/毫秒 * - ISO 时间字符串(必须显式带时区) */ export declare function parse_schedule_time_option_or_throw(value: string, fieldName: string): number; /** * 解析 command 层调度输入并归一化为绝对毫秒时间戳。 * * 说明(中文) * - `delay_ms` 与 `time` 只能二选一。 * - 未传时返回 `undefined`,表示立即执行。 */ export declare function parse_action_schedule_run_at_ms_or_throw(params: { delay?: string | number | undefined; time?: string | number | undefined; }): number | undefined; /** * 规范化 API/存储层传入的 run_at_ms。 */ export declare function normalize_run_at_ms_or_throw(value: string | number | undefined, fieldName: string): number; //# sourceMappingURL=ActionScheduleTime.d.ts.map