Module Component.Element

type module_ = [
| `Module of Odoc_model.Paths.Identifier.Path.Module.t * Module.t Delayed.t
]
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
]
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 external_ = [
| `External of Odoc_model.Paths.Identifier.Value.t * External.t
]
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 extension = [
| `Extension of Odoc_model.Paths.Identifier.Extension.t * Extension.Constructor.t
]
type field = [
| `Field of Odoc_model.Paths.Identifier.Field.t * TypeDecl.Field.t
]
type label_parent = [
| signature
| datatype
]
type any = [
| signature
| value
| type_
| label
| class_
| class_type
| external_
| constructor
| exception_
| extension
| field
]