package llama_core

  1. Overview
  2. Docs
type note_event = {
  1. note : int;
  2. velocity : int;
}
type message =
  1. | Note_off of note_event
  2. | Note_on of note_event
type t = {
  1. channel : int;
  2. message : message;
}
OCaml

Innovation. Community. Security.