mirror of
https://github.com/taigrr/bubbletea.git
synced 2026-04-02 11:09:17 -07:00
The Nil Renderer essentially disables the Bubble Tea renderer sending loggings and print statements to stdout. It can be enabled via the ProgramOption WithoutRenderer.
10 lines
111 B
Go
10 lines
111 B
Go
package tea
|
|
|
|
type renderer interface {
|
|
start()
|
|
stop()
|
|
write(string)
|
|
altScreen() bool
|
|
setAltScreen(bool)
|
|
}
|