/** * KHAELOR * File: src/repograph/index.ts * Description: Public surface of the RepoGraph semantic-index module (v2 design ยง3). * * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai */ export { extractFile, isIndexablePath } from "./extractor.js"; export type { ExtractedImport, ExtractedSymbol, ExtractionResult, SymbolKind, } from "./extractor.js"; export { RepoGraphService } from "./service.js"; export type { IndexStats, IndexedFile, RefQueryHit, SymbolQueryHit } from "./service.js";