deno_doc icon indicating copy to clipboard operation
deno_doc copied to clipboard

Is it possible to `@link` to a particular overload?

Open dgreensp opened this issue 1 year ago • 2 comments

For example, say I want to link to another overload of the same function.

JSDoc descends from JavaDoc, which of course has always supported linking to overloads. Is it a new concept now?

dgreensp avatar Dec 03 '24 23:12 dgreensp

Since javacript doesnt have overloads, JSDoc has no notion of them. how does JavaDoc do linking to overloads? we might be able to implement it with similar syntax

crowlKats avatar Dec 06 '24 13:12 crowlKats

Here's what TSDoc does: https://tsdoc.org/pages/tags/link/

JavaDoc supports this set of syntaxes:

image

dgreensp avatar Dec 06 '24 16:12 dgreensp