codevault
Version:
AI-powered semantic code search via Model Context Protocol
10 lines • 501 B
TypeScript
import type { IndexProjectOptions, IndexProjectResult } from '../core/types.js';
export interface IndexWithProgressCallbacks {
onScanComplete?: (fileCount: number) => void;
onFileProgress?: (current: number, total: number, fileName: string) => void;
onFinalizing?: () => void;
}
export declare function indexProjectWithProgress(options: IndexProjectOptions & {
callbacks?: IndexWithProgressCallbacks;
}): Promise<IndexProjectResult>;
//# sourceMappingURL=indexer-with-progress.d.ts.map