Files
phishingclub/backend/vendor/github.com/charmbracelet/bubbletea/focus.go
T
2025-09-15 19:41:59 +02:00

10 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{}