component.go

 1package common
 2
 3import (
 4	"github.com/charmbracelet/bubbles/help"
 5	tea "github.com/charmbracelet/bubbletea"
 6)
 7
 8type Component interface {
 9	tea.Model
10	SetSize(width, height int)
11}
12
13type Page interface {
14	Component
15	help.KeyMap
16}