Search result from settings search.

interface SearchResult {
/** Matched section information. */
section: { id: string; title: string; tab: string };
/** Match score (higher = better match). */
score: number;
}
interface SearchResult {
    section: { id: string; title: string; tab: string };
    score: number;
}

Properties

Properties

section: { id: string; title: string; tab: string }

Matched section information.

score: number

Match score (higher = better match).