shithub: xui

ref: a8bb4e36f51179ad6b544d2236600b88aab371d2
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
}