10 lines
152 B
Go
10 lines
152 B
Go
package common
|
|
|
|
import tea "github.com/charmbracelet/bubbletea"
|
|
|
|
type Component interface {
|
|
tea.Model
|
|
//help.KeyMap
|
|
SetSize(width int, height int)
|
|
}
|