shithub: xui

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