fixed tests and added some more documentation

This commit is contained in:
lotte
2019-02-19 15:59:03 +01:00
parent 0ebb0de3dd
commit 1cea791cba
10 changed files with 100 additions and 60 deletions

View File

@@ -1,4 +1,14 @@
/**
* Interface representing a single suggestion for the input suggestions component
*/
export interface InputSuggestion {
/**
* The displayed value of the suggestion
*/
displayValue: string,
/**
* The actual value of the suggestion
*/
value: string
}