While VS Code recognizes the {@link}
JSDoc syntax in TypeScript, I am unsure of how to reference a member within the current module.
I have tested out different approaches:
{@link Name}
{@link .Name}
{@link #Name}
{@link moduleName.Name}
{@link moduleName#Name}
However, VS Code consistently displays "no definition found for Name."
Unfortunately, even the typedoc project does not provide any information on this matter.