shithub: xui

ref: bee85da05585c5f6d73208d10659f5860d3d8524
dir: /events/keyboard/keyboard.go/

View raw version
package keyboard

type Type int

const (
	Down Type = 1 << iota
	Up
	Pressed
)

type Event struct {
	Type

	Key rune
}