Module Component.Class

type decl =
  1. | ClassType of ClassType.expr
  2. | Arrow of TypeExpr.label option * TypeExpr.t * decl
type t = {
  1. source_loc : Odoc_model.Paths.Identifier.SourceLocation.t option;
  2. source_loc_jane : Odoc_model.Lang.Source_loc_jane.t option;
  3. doc : CComment.docs;
  4. virtual_ : bool;
  5. params : TypeDecl.param list;
  6. type_ : decl;
  7. expansion : ClassSignature.t option;
}