Skip to main content

Function: getInlineLinkMatches()

function getInlineLinkMatches(
sourceCode: SourceCode,
comment: Readonly<Comment>
): readonly Readonly<{
absoluteRange: readonly [number, number];
content: string;
fullText: string;
}>[];

Defined in: _internal/doc-comments.ts:506

Collect all inline {@link ...} matches from a comment.

Parametersโ€‹

sourceCodeโ€‹

SourceCode

commentโ€‹

Readonly<Comment>

Returnsโ€‹

readonly Readonly<{ absoluteRange: readonly [number, number]; content: string; fullText: string; }>[]