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
Having overloaded functions such as the example below will produce function duplicates in the generated documentation:
function func(key: "dashboard"): ContentRecord<DashboardMetaData> {} function func(key: "widget"): ContentRecord<WidgetMetaData> {} function func(key: "filter"): ContentRecord<FilterMetaData> {} function func(key: ContentType): ContentRecord<DashboardMetaData> | ContentRecord<WidgetMetaData> | ContentRecord<FilterMetaData> { ...impl }
The text was updated successfully, but these errors were encountered:
@NZepeda is this bug still valid? I was looking for an example of bad generated documentation. One that came to mind is https://activeviam.com/activeui/documentation/latest/docs/api/hooks#usetree. But it seems to be correctly generated.
If this issue does not exist any more, could you close it?
Sorry, something went wrong.
No branches or pull requests
Summary
Having overloaded functions such as the example below will produce function duplicates in the generated documentation:
The text was updated successfully, but these errors were encountered: