You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There was a bug which caused kind names to be mashed up against the reflection name, #2748
You could do this by (ab)using TypeDoc's locales option option to overwrite the kind translations (these ones) with empty strings.
The right way to do this is with a custom theme which overwrites the header template to remove them, there is no option to remove the type from the header, though I guess the headings option could be extended with a flag for that...
Search terms
Question
I have an object declared this way:
/**
*/
export class MyClient {
...random code
}
TypeDoc generates this header in the documentation:
ClassMyClient
It does that for everything in the project; Namespaces, enums, interfaces. All of it.
How do I get it to generate MyClient instead of ClassMyClient
The text was updated successfully, but these errors were encountered: