/** * checkpoint 命令 - 查看与回滚检查点 */ import { Command } from 'commander'; import { type Checkpoint } from '../../core/checkpoint.js'; export interface CheckpointRollbackOptions { restoreDeliverables?: boolean; } export declare function createCheckpointCommand(basePath?: string): Command; export declare function listCheckpointsCommand(basePath?: string): Promise; export declare function rollbackCommand(checkpointId: string, options: CheckpointRollbackOptions, basePath?: string): Promise; //# sourceMappingURL=checkpoint.d.ts.map