twink/vendor/github.com/charmbracelet/bubbletea/focus.go
2025-12-05 12:20:05 +01:00

9 lines
247 B
Go

package tea
// FocusMsg represents a terminal focus message.
// This occurs when the terminal gains focus.
type FocusMsg struct{}
// BlurMsg represents a terminal blur message.
// This occurs when the terminal loses focus.
type BlurMsg struct{}