package doc-ock

  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 'a content =
  1. | Module of 'a Signature.t
  2. | Pack of 'a Packed.t
type 'a t = {
  1. id : 'a DocOckPaths.Identifier.module_;
  2. doc : 'a Documentation.t;
  3. digest : Digest.t;
  4. imports : 'a Import.t list;
  5. source : 'a Source.t option;
  6. interface : bool;
  7. hidden : bool;
  8. content : 'a content;
  9. expansion : 'a Signature.t option;
}