/** * change - 需求变更联动命令 * 修改任务需求时,自动更新关联 Spec 文件 */ import { ArchiveStrategy } from '../core/change-inbox'; export interface ChangeOptions { task?: string; desc?: string; input?: string; global?: boolean; iteration?: string; dryRun?: boolean; requirement?: boolean; analysis?: boolean; force?: boolean; interactive?: boolean; file?: string; dir?: string; inbox?: boolean; newFlag?: boolean; withCode?: boolean; auto?: boolean; keep?: boolean; deleteAfterProcess?: boolean; archiveStrategy?: ArchiveStrategy; noInbox?: boolean; reprocess?: boolean; prompt?: boolean; response?: string; batchSize?: number; } export declare function changeCommand(options: ChangeOptions): Promise; //# sourceMappingURL=change.d.ts.map