package doc-ock

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