/** * reindex — 全量索引重建与一致性检查命令 * * 用法: * speccore reindex # 全量重建所有层级索引 * speccore reindex --check # 只检查一致性,不修复 * speccore reindex --iteration Q2 # 指定迭代 */ export interface ReindexOptions { check?: boolean; iteration?: string; } export declare function reindexCommand(options: ReindexOptions): Promise; //# sourceMappingURL=reindex.d.ts.map