summaryrefslogtreecommitdiffhomepage
path: root/packages/tui/input/focus.go
blob: 796d95f64388383cc8d4be993c77744b5dd6b547 (plain)
1
2
3
4
5
6
7
8
9
package input

// FocusEvent represents a terminal focus event.
// This occurs when the terminal gains focus.
type FocusEvent struct{}

// BlurEvent represents a terminal blur event.
// This occurs when the terminal loses focus.
type BlurEvent struct{}