@squawk
    Preparing search index...

    Interface FixSearchResult

    A scored fix result from a fuzzy FixResolver.search.

    interface FixSearchResult {
        fix: Fix;
        matchedField: "identifier";
        ranges: MatchRange[];
        score: number;
    }
    Index

    Properties

    fix: Fix

    The matched fix record.

    matchedField: "identifier"

    Which field produced the best match, identifying what FixSearchResult.ranges index into.

    ranges: MatchRange[]

    Matched character ranges within the best-matching field's text, for highlighting.

    score: number

    Match strength in [0, 1], where 1 is an exact identifier match.