You can search for identifiers within the package.
in-package search v0.2.0
type action = unit -> unit
type label =
| Text of string
| Layout of Layout.t
type entry = {
label : label;
content : content;
}
and content =
| Action of action
| Flat of entry list
| Tower of entry list
| Custom of entry list
| Separator
val create : dst:Layout.t -> content -> Layout.t
val separator : entry