Versions in this module Expand all Collapse all v0 v0.0.8 Jul 15, 2026 Changes in this version + type Model struct + func New(rows []StackRow) Model + func (m Model) Cancelled() bool + func (m Model) Init() tea.Cmd + func (m Model) Result() (StackRow, bool) + func (m Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) + func (m Model) View() string + type StackRow struct + Base string + BottomBranch string + Branches []string + Created time.Time + HasCreated bool + LocalStack *stack.Stack + Number int + Status StatusCounts + TopBranch string + Type StackType + func BuildRows(local []stack.Stack, remote []github.RemoteStack) []StackRow + func (r StackRow) CreatedDisplay() string + func (r StackRow) NumberDisplay() string + func (r StackRow) Summary() string + type StackType int + const TypeLocal + const TypeRemote + func (t StackType) String() string + type StatusCounts struct + Closed int + Merged int + Open int + Unpushed int + func (c StatusCounts) Total() int