10 lines
141 B
Go
10 lines
141 B
Go
package common
|
|
|
|
import tea "charm.land/bubbletea/v2"
|
|
|
|
type Component interface {
|
|
tea.Model
|
|
//help.KeyMap
|
|
SetSize(width int, height int)
|
|
}
|