package odoc

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type method_ = {
  1. name : string;
  2. type_ : TypeExpr.t;
}
type field =
  1. | Method of method_
  2. | Inherit of TypeExpr.t
type t = {
  1. fields : field list;
  2. open_ : bool;
}