Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All but first interfaces extended ignored.
interface Person extends Foo, Bar, Baz { ... }
result documentation.json
{ ... "interfaces": [{ "name": "Person", ... "extends": "Foo" }] ... }
extends for "Person" interface is 'Foo', but rest are lost.
extends
'Foo'
Related use case, when interface uses typescript type like Omit, actual extended interface lost
interface Person extends Omit<Foo, 'name'> { ... }
extends for "Person" interface is 'Omit', actual interface Foo is lost.
'Omit'
package.json
locally
Some times an interface needs to extends multiple other interfaces, losing all but first will result in missed properties in result documentation.
See overview section
Suggestion for first of this bug, perhaps turn extends into array, or comma separated string
The text was updated successfully, but these errors were encountered:
229f407
vogloblinsky
No branches or pull requests
Overview of the issue
All but first interfaces extended ignored.
result documentation.json
extends
for "Person" interface is'Foo'
, but rest are lost.Related use case, when interface uses typescript type like Omit, actual extended interface lost
extends
for "Person" interface is'Omit'
, actual interface Foo is lost.Operating System, Node.js, npm, compodoc version(s)
Angular configuration, a
package.json
file in the root folderCompodoc installed globally or locally ?
locally
Motivation for or Use Case
Some times an interface needs to extends multiple other interfaces, losing all but first will result in missed properties in result documentation.
Reproduce the error
See overview section
Suggest a Fix
Suggestion for first of this bug, perhaps turn extends into array, or comma separated string
The text was updated successfully, but these errors were encountered: