mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
23 lines
464 B
TypeScript
23 lines
464 B
TypeScript
/**
|
|
* Interface representing a single suggestion for the input suggestions component
|
|
*/
|
|
export interface InputSuggestion {
|
|
/**
|
|
* The displayed value of the suggestion
|
|
*/
|
|
displayValue: string;
|
|
|
|
/**
|
|
* The search query that can be used with filter suggestion.
|
|
* It contains the value within the operator :
|
|
* - value,equals
|
|
* - value,authority
|
|
*/
|
|
query?: string;
|
|
|
|
/**
|
|
* The actual value of the suggestion
|
|
*/
|
|
value: string;
|
|
}
|