package minttea

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type key =
  1. | Up
  2. | Down
  3. | Left
  4. | Right
  5. | Space
  6. | Escape
  7. | Backspace
  8. | Enter
  9. | Key of string
type t =
  1. | KeyDown of key
  2. | Timer of unit Riot.Ref.t
  3. | Frame of Ptime.t
  4. | Custom of Riot.Message.t
val pp : Stdlib.Format.formatter -> t -> unit