1package tea
2
3// FocusMsg represents a terminal focus message.
4// This occurs when the terminal gains focus.
5type FocusMsg struct{}
6
7// BlurMsg represents a terminal blur message.
8// This occurs when the terminal loses focus.
9type BlurMsg struct{}