mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-06 01:20:24 +08:00
9 lines
234 B
Go
9 lines
234 B
Go
package tview
|
|
|
|
// Focusable provides a method which determines if a primitive has focus.
|
|
// Composed primitives may be focused based on the focused state of their
|
|
// contained primitives.
|
|
type Focusable interface {
|
|
HasFocus() bool
|
|
}
|