Incomplete typeParams in TypeScript
roddolf opened this issue · 1 comments
roddolf commented
With the TypeScript package the documents have a property called typeParams
this contains
the generic data of the element, but its currently incomplete in the following case:
Having a class like:
class Class<T extends Anything> {
/* ... */
}
The value of typeParams
would be only <T>
leaving the extends Anything
aside.
roddolf commented
Sorry, duplicated due to GitHub problems