You can search for identifiers within the package.
in-package search v0.2.0
type level =
| Debug
| Info
| Warning
| Error
type info = {
level : level;
section : string;
message : string;
}
type event +=
| Message of info
| Progress of {
task : string;
note : string option;
stage : int option;
total : int option;
val progress : ?note:string -> ?stage:int -> ?total:int -> string -> unit
val message : level -> section:string -> ('a, Stdlib.Format.formatter, unit) Stdlib.format -> 'a