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
JSDoc and JavaDoc use # to refer to instance methods and fields of a class (e.g. Class#method) while . is used for static methods and fields (e.g. Class.staticField).
TypeDoc does not support this. Even worse, TypeDoc doesn't even error or warn when encountering such links.
Search Terms
link, member
Problem
JSDoc and JavaDoc use
#
to refer to instance methods and fields of a class (e.g.Class#method
) while.
is used for static methods and fields (e.g.Class.staticField
).TypeDoc does not support this. Even worse, TypeDoc doesn't even error or warn when encountering such links.
(input code, referenced method)
Suggested Solution
Support
#
. TypeDoc doesn't really differentiate between static and instance members right now, so treating#
as a.
should work.Also, is it a bug that invalid links are just printed as is? Shouldn't there be a warning since it's an invalid reference?
The text was updated successfully, but these errors were encountered: