jon.recoil.org

Module Root.Odoc_file

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