mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-31 14:22:27 +00:00
10 lines
253 B
Go
10 lines
253 B
Go
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{}
|