interface.go 198 B

1234567891011
  1. package common
  2. import (
  3. tea "charm.land/bubbletea/v2"
  4. )
  5. // Model represents a common interface for UI components.
  6. type Model[T any] interface {
  7. Update(msg tea.Msg) (T, tea.Cmd)
  8. View() string
  9. }