Sizeable represents components that can be resized
| 8 | |
| 9 | // Sizeable represents components that can be resized |
| 10 | type Sizeable interface { |
| 11 | SetSize(width, height int) tea.Cmd |
| 12 | } |
| 13 | |
| 14 | // Focusable represents components that can receive focus |
| 15 | type Focusable interface { |
no outgoing calls
no test coverage detected