14 lines
251 B
Go
14 lines
251 B
Go
package tui
|
|
|
|
import (
|
|
"git.tordarus.net/Tordarus/buf2d"
|
|
"github.com/gdamore/tcell"
|
|
)
|
|
|
|
type ViewBuffer = buf2d.Buffer[Rune]
|
|
type KeyEvent = tcell.EventKey
|
|
type Style = tcell.Style
|
|
type Color = tcell.Color
|
|
|
|
var StyleDefault Style = tcell.StyleDefault
|