shithub: xui

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