data-cap
    Preparing search index...

    Interface LinkResult

    Every capability discovered and linked across the project, plus every warning encountered along the way.

    interface LinkResult {
        capabilities: readonly DiscoveredCapability[];
        root: string;
        warnings: readonly ParseWarning[];
    }
    Index
    capabilities: readonly DiscoveredCapability[]

    Every discovered, linked capability -- each file still ABSOLUTE here, since linking itself does real filesystem work. Relativized once, at model construction, by buildInventory.

    root: string

    The discovery root this result was produced against (LinkOptions.root), carried through so buildInventory can publish every file root-relative without a second, separately-supplied copy of the same fact that could disagree with the one linking actually used (OUT-01; see display-path.ts).

    warnings: readonly ParseWarning[]

    Parse/link warnings, never blocking.