data-cap
    Preparing search index...

    Interface ScanDependenciesResult

    Every proven consumer edge the scan found, plus any resolution warnings.

    interface ScanDependenciesResult {
        edges: readonly DependencyEdge[];
        scannedPackages: readonly string[];
        warnings: readonly ParseWarning[];
    }
    Index
    edges: readonly DependencyEdge[]

    Every proven consumer relationship found.

    scannedPackages: readonly string[]

    Allow-listed package names whose own directory was actually walked and scanned as potential consumer source -- the honest "what was actually searched" boundary a "field is unconsumed" conclusion is scoped to (ADR 0053). A package listed in options.packages but not resolvable (see warnings) is never silently counted as scanned.

    warnings: readonly ParseWarning[]

    Resolution warnings encountered during the scan, never blocking.