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;
}
interface SettingsSearchResult {
    section: {
        id: string;
        title: string;
        tab: string;
        description?: string;
        keywords?: string[];
    };
    score: number;
}

Properties

Properties

section: {
    id: string;
    title: string;
    tab: string;
    description?: string;
    keywords?: string[];
}

Matched section information.

score: number

Match score (higher = better match).