/** * Filesystem repo map — the path taken when the index has no ranks yet. * * This is the original heuristic map: walk the tree, score each file by * entry-point name and depth, and pack skeletons until the budget runs out. * It knows nothing about who references whom, so it is strictly a stand-in * for {@link generateRepoMap}'s graph-ranked output on a fresh clone, during * the first index run, or in a directory that was never indexed at all. * * Two defects of the original are fixed here, because a stand-in that lies is * worse than no stand-in: it no longer stops after ~500 files (this repo has * 8,412, so the old cap meant the "map" described whichever directories the * walk happened to reach first), and it honours `.gitignore` instead of a * hardcoded list of four directory names. */ import type { RepoMapOptions, RepoMapResult } from './repo-map-types.js'; export declare function generateFallbackRepoMap(opts: RepoMapOptions): Promise; //# sourceMappingURL=repo-map-fallback.d.ts.map