Source file input_event0_intf.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
open! Core
open! Import0
module type Input_event0_public = sig
include Value.Subtype
(** [(describe-function 'single-key-description)]
[(Info-goto-node "(elisp)Describing Characters")] *)
val description : t -> string
end
module type Input_event0 = sig
include Input_event0_public
end