data-cap
    Preparing search index...

    Interface ImportBindingMatch

    One consuming file's import resolved against a ScanTarget.

    interface ImportBindingMatch {
        localName: string;
        resolution: "resolved" | "unresolved-consumer";
        target: ScanTarget;
    }
    Index
    localName: string

    The name this binding is referenced by within the consuming file.

    resolution: "resolved" | "unresolved-consumer"

    "unresolved-consumer" when the match came from a same-name heuristic (the import specifier didn't resolve directly to the target's own file -- e.g. a barrel re-export) rather than a directly-resolved import.

    target: ScanTarget

    Which capability this import resolved to.