Module Root.Odoc_fileSource

Sourcetype compilation_unit = {
  1. name : string;
  2. hidden : bool;
}
Sourcetype page = {
  1. name : string;
  2. title : Comment.link_content option;
  3. frontmatter : Frontmatter.t;
}
Sourcetype t =
  1. | Page of page
  2. | Compilation_unit of compilation_unit
  3. | Impl of string
  4. | Asset of string
Sourceval create_unit : force_hidden:bool -> string -> t
Sourceval create_page : string -> Comment.link_content option -> Frontmatter.t -> t
Sourceval create_impl : string -> t
Sourceval asset : string -> t
Sourceval name : t -> string
Sourceval hidden : t -> bool