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
Hello. I have this sources
import * as React from 'react'; export interface MyComponentProps{ prop1: number; prop2: string; } /** * descriptions for component */ export class MyComponent extends React.Component<MyComponentProps,{}>{ render(){ return( <div> </div> ); } }
I use docgen from this wiki example
this is output
[ { "name": "MyComponent", "documentation": "descriptions for component", "type": "typeof MyComponent", "constructors": [ { "paramters": [], "returnType": "MyComponent", "documentation": "" } ] } ]
I want to extend this output by type of first generic passed to react.component.
How to extract generic type passed to parent class? Thank you!
The text was updated successfully, but these errors were encountered:
@sebastian-lenz, could you help me, please? As I understand, you already solved the same issue in your typeDoc
Sorry, something went wrong.
I mean same .net reflection functionality
No branches or pull requests
Hello.
I have this sources
I use docgen from this wiki example
this is output
I want to extend this output by type of first generic passed to react.component.
How to extract generic type passed to parent class?
Thank you!
The text was updated successfully, but these errors were encountered: