1package types
2
3type Suggestion struct {
4	// value is the thing that we're matching on and the thing that will be submitted if you select the suggestion
5	Value string
6	// label is what is actually displayed so it can e.g. contain color
7	Label string
8}
9