package General

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Status : sig ... end
type single = {
  1. label : string;
  2. status : Status.t;
}
module Counts : sig ... end
type group = {
  1. name : string;
  2. children : t list;
  3. counts : Counts.t;
}
and t =
  1. | Single of single
  2. | Group of group