1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/wtf/wtfable.go
2019-05-11 19:47:59 -04:00

24 lines
293 B
Go

package wtf
import (
"github.com/rivo/tview"
)
type Wtfable interface {
Enabler
Scheduler
BorderColor() string
FocusChar() string
Focusable() bool
Name() string
SetFocusChar(string)
TextView() *tview.TextView
HelpText() string
Height() int
Left() int
Top() int
Width() int
}