If an interface inherits members of another interface that uses generics, such as Partial<...>
or Omit<...>
, typedoc
properly creates the hierarchy links, but upon rendering inheritance on properties, it omits the generic and renders just
Partial.propertyName
:
To reproduce, run npm run doc
, view the doc of Bar
(which inherits Partial<Foo>
) and check the doc for inherited
properties.