angular / dgeni-packages

A collection of dgeni packages for generating documentation from source code.
MIT License
142 stars 106 forks source link

Incomplete typeParams in TypeScript #239

Closed roddolf closed 7 years ago

roddolf commented 7 years ago

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 7 years ago

Sorry, duplicated due to GitHub problems