shithub: xui

ref: 00d144fb31327e3e7181f669c58d6fdbe0c9485e
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
}