/** * code-index — 源码索引命令 * * 用法: * speccore code-index # 增量更新(只扫变化文件) * speccore code-index --full # 全量重新扫描 * speccore code-index --scope src/commands # 指定目录 * speccore code-index --show # 只显示当前索引,不更新 */ import { Command } from 'commander'; export interface CodeIndexOptions { full?: boolean; scope?: string; show?: boolean; graph?: boolean; incremental?: boolean; watch?: boolean; } export declare function codeIndexCommand(options: CodeIndexOptions): Promise; export declare function registerCodeIndexCommand(program: Command): void; //# sourceMappingURL=code-index.d.ts.map