Search result from Fuse.js fuzzy search.
Contains the matched section, relevance score, and match indices for highlighting.
export interface SettingsSearchResult { section: SettingsSection; score: number; matches?: FuseResultMatch[];} Copy
export interface SettingsSearchResult { section: SettingsSection; score: number; matches?: FuseResultMatch[];}
The matched settings section.
Fuse.js relevance score (0 to 1, lower = better match).
Optional
Array of match details with field name and character indices.
Search result from Fuse.js fuzzy search.
Contains the matched section, relevance score, and match indices for highlighting.
Source