package odoc

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Import : sig ... end
module Source : sig ... end
module Packed : sig ... end
type content =
  1. | Module of Signature.t
  2. | Pack of Packed.t
type t = {
  1. id : Paths.Identifier.Module.t;
  2. doc : Comment.docs;
  3. digest : Digest.t;
  4. imports : Import.t list;
  5. source : Source.t option;
  6. interface : bool;
  7. hidden : bool;
  8. content : content;
  9. expansion : Signature.t option;
}