Hi!
In the Ramda docs, clicking on "Expand parameters" gives you a sort of JSDoc style of documentation but it looks incomplete.
add, for example, only shows parameter names but not their types. You can see in the HTML on the page that the span.type element is empty.
https://ramdajs.com/docs/#add
The HTML
<li class="list-group-item">
<span class="type"></span>
<span class="name">a</span>
<span class="description"></span>
</li>
Is this intentional? If it is, is the intention that developers would look at the Hindley-Milner representation and the JSDoc style representation and put them together in their head to get a full picture?