mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
20 lines
217 B
Go
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
|
|
}
|