Type Alias PhrasesToHighlight

PhrasesToHighlight: {
    [originalPhrase: string]: TermsToHighlight;
}

Phrases to highlight (with stemming) in the results.

E.g., for the exact phrase "indexing consultant", where a result contains "Techzample is a consulting firm specializing in search indexes. It employs consultants that can analyze and improve your search index.", the PhrasesToHighlight might be { "indexing consultant": {"indexing": ["indexes", "index"], "consultant": ["consulting", "consultants"]}}.