bubbletea/renderer.go

10 lines
111 B
Go

package tea
type renderer interface {
start()
stop()
write(string)
altScreen() bool
setAltScreen(bool)
}