Interface Suggestion

The type of auto-suggestions

interface Suggestion {
    score: number;
    suggestion: string;
    terms: string[];
}

Properties

score: number

Score for the suggestion

suggestion: string

The suggestion

terms: string[]

Suggestion as an array of terms

Generated using TypeDoc