Options for customizing match score calculation behavior.
export interface MatchScoreOptions { /** * When true, skips meaningful word overlap and initialism heuristics. * Useful for regression testing and before/after comparisons. * @source */ shouldDisableMeaningfulOverlap?: boolean;} Copy
export interface MatchScoreOptions { /** * When true, skips meaningful word overlap and initialism heuristics. * Useful for regression testing and before/after comparisons. * @source */ shouldDisableMeaningfulOverlap?: boolean;}
Optional
When true, skips meaningful word overlap and initialism heuristics. Useful for regression testing and before/after comparisons.
shouldDisableMeaningfulOverlap?: boolean; Copy
shouldDisableMeaningfulOverlap?: boolean;
Options for customizing match score calculation behavior.
Source