package doc-ock

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a decl =
  1. | ClassType of 'a ClassType.expr
  2. | Arrow of TypeExpr.label option * 'a TypeExpr.t * 'a decl
type 'a t = {
  1. id : 'a DocOckPaths.Identifier.class_;
  2. doc : 'a Documentation.t;
  3. virtual_ : bool;
  4. params : TypeDecl.param list;
  5. type_ : 'a decl;
  6. expansion : 'a ClassSignature.t option;
}