Module Component.ClassTypeSource

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