Module Component.Element

type module_type = [
| `ModuleType of Odoc_model.Paths.Identifier.ModuleType.t * ModuleType.t
]
type type_ = [
| `Type of Odoc_model.Paths.Identifier.Type.t * TypeDecl.t
]
type value = [
| `Value of Odoc_model.Paths.Identifier.Value.t * Value.t
]
type label = [
| `Label of Odoc_model.Paths.Identifier.Label.t * Label.t
]
type class_ = [
| `Class of Odoc_model.Paths.Identifier.Class.t * Class.t
]
type class_type = [
| `ClassType of Odoc_model.Paths.Identifier.ClassType.t * ClassType.t
]
type datatype = [
| type_
| class_
| class_type
]
type signature = [
| module_
| module_type
]
type constructor = [
| `Constructor of Odoc_model.Paths.Identifier.Constructor.t * TypeDecl.Constructor.t
]
type exception_ = [
| `Exception of Odoc_model.Paths.Identifier.Exception.t * Exception.t
]
type label_parent = [
| signature
| datatype
]