Module Component.Module

type decl =
  1. | Alias of Cpath.module_ * ModuleType.simple_expansion option
  2. | ModuleType of ModuleType.expr
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. type_ : decl;
  5. canonical : Odoc_model.Paths.Path.Module.t option;
  6. hidden : bool;
}