| 24 | } |
| 25 | |
| 26 | type FormField interface { |
| 27 | Update(tea.Msg) tea.Cmd |
| 28 | View() string |
| 29 | Focus() tea.Cmd |
| 30 | Blur() |
| 31 | SetWidth(int) |
| 32 | IsFocusable() bool |
| 33 | } |
| 34 | |
| 35 | type valuer interface { |
| 36 | Value() string |
no outgoing calls
no test coverage detected
searching dependent graphs…