1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/wtf/wtfable.go
2018-05-14 21:04:37 -07:00

20 lines
217 B
Go

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