focus.go 253 B

123456789
  1. package input
  2. // FocusEvent represents a terminal focus event.
  3. // This occurs when the terminal gains focus.
  4. type FocusEvent struct{}
  5. // BlurEvent represents a terminal blur event.
  6. // This occurs when the terminal loses focus.
  7. type BlurEvent struct{}