Search result from settings search.
interface SettingsSearchResult { /** Matched section information. */ section: { id: string; title: string; tab: string; description?: string; keywords?: string[]; }; /** Match score (higher = better match). */ score: number;} Copy
interface SettingsSearchResult { /** Matched section information. */ section: { id: string; title: string; tab: string; description?: string; keywords?: string[]; }; /** Match score (higher = better match). */ score: number;}
Matched section information.
Match score (higher = better match).
Search result from settings search.
Source