summaryrefslogtreecommitdiffstats
path: root/pkg/gui/types/suggestion.go
blob: ed8b6ef44b1ce6e7131a095262ad89e923d55e55 (plain)
1
2
3
4
5
6
7
8
package types

type Suggestion struct {
	// value is the thing that we're matching on and the thing that will be submitted if you select the suggestion
	Value string
	// label is what is actually displayed so it can e.g. contain color
	Label string
}