package odoc

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