@see

Tag Kind: Block
TSDoc Reference: @see JSDoc Reference: @see

The @see tag can be used to create a list of references for other resources related to this export.

/**
* @see [Factorial - Wikipedia](https://en.wikipedia.org/wiki/Factorial)
* @see {@link semifactorial}
*/
export function factorial(n: number): number;

JSDoc specifies that @see tags contents will be parsed as a reference to a symbol name if possible. TypeDoc does not support this use case, requiring an explicit @link within the comment if a link is desired.