UNPKG

coveo-search-ui

Version:

Coveo JavaScript Search Framework

14 lines (13 loc) 290 B
/** * Describe a ranking expression performed against the index (qre) */ export interface IRankingExpression { /** * The expression that was executed in the ranking expression */ expression: string; /** * The relevance modifier that was applied */ modifier: string; }