mirror of
https://github.com/sst/opencode.git
synced 2025-08-04 21:38:01 +00:00
9 lines
253 B
Go
9 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{}
|