Module Component.Class

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