Docgen does not generate json entries for modules annotated with a module type: module M: MT = ....
Annotated modules should be just included in the generated json as any other module.
Example
// Example.res
module type MT = {
let x: int
}
module M: MT = {
let x = 42
}
Docgen does not generate json entries for modules annotated with a module type:
module M: MT = ...
. Annotated modules should be just included in the generated json as any other module.Example
generates
Note: This behavior was first stated in #902, but was added as a separate issue for transparency.