package bogue

  1. Overview
  2. Docs
type action = unit -> unit
type label =
  1. | Text of string
  2. | Layout of Layout.t
type entry = {
  1. label : label;
  2. content : content;
}
and content =
  1. | Action of action
  2. | Flat of entry list
  3. | Tower of entry list
  4. | Custom of entry list
  5. | Separator
val create : dst:Layout.t -> content -> Layout.t
val separator : entry
OCaml

Innovation. Community. Security.