Module Component.ClassSource

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