When using the table mode for --typeDeclarationFormat, it will display the functions without the parentheses which is very confusing visually since you have no way of knowing if it's a function or a property.
It is a bit annoying that those are considers properties in the first place (guessing this is a limitation of the compiler).
What package is the bug related to?
typedoc-plugin-markdown
Describe the issue
When using the
table
mode for--typeDeclarationFormat
, it will display the functions without the parentheses which is very confusing visually since you have no way of knowing if it's a function or a property. It is a bit annoying that those are considers properties in the first place (guessing this is a limitation of the compiler).For example:
TypeDoc configuration
--typeDeclarationFormat=table
Expected behavior
Display the name with
(...args)