blob: 2c33cf8df5385a46408a3ec543cf8f92b4921ce9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package widgets
import (
"time"
)
type TabHost interface {
BeginExCommand()
SetStatus(status string) *StatusMessage
PushStatus(text string, expiry time.Duration) *StatusMessage
Beep()
}
|