src/lib/service/autocomplete/autocomplete.interface.ts
Represents the search parameters for an autocomplete request.
[key: string]:
|
export interface AutocompleteEntry {
value: string;
selectable: boolean;
}
/**
* Represents the response from an autocomplete request.
*/
export interface AutocompleteResponse {
config: {
[key: string]: string;
};
entries: AutocompleteEntry[];
}
/**
* Represents the search parameters for an autocomplete request.
*/
export interface SearchParams {
[key: string]: string;
}