Detailed breakdown of match score components.
export interface MatchScoreDetails { /** Final calculated score (0-1). */ score: number; /** Type of match that produced the score. */ matchType: "direct" | "word" | "legacy" | "none"; /** Individual component scores. */ components: { directMatch: number; wordMatch: number; legacyMatch: number; };} Copy
export interface MatchScoreDetails { /** Final calculated score (0-1). */ score: number; /** Type of match that produced the score. */ matchType: "direct" | "word" | "legacy" | "none"; /** Individual component scores. */ components: { directMatch: number; wordMatch: number; legacyMatch: number; };}
Final calculated score (0-1).
Type of match that produced the score.
Individual component scores.
Detailed breakdown of match score components.
Source