search-client
Version:
Javascript library for executing searches in the Haive search-index via the SearchManager REST interface.
11 lines (10 loc) • 328 B
TypeScript
import { BaseQueryConverter, Query } from '../Common';
/**
* Class to handle creating autocomplete lookups.
*/
export declare class AutocompleteQueryConverter extends BaseQueryConverter {
/**
* Converts the query params to an array of key=value segments.
*/
protected getUrlParams(query: Query): string[];
}