Skip to content

Commit ab91cf2

Browse files
authored
Repro for link to external symbol, function, and label
1 parent 1e7071f commit ab91cf2

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/**
2-
* Some code reproducing a bug.
2+
* {@link SomeInterface#someFunction:WITHNUMBER | someFunction}
33
*/
44
export const bug = 123;

src/someInterface.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export interface SomeInterface {
2+
/**
3+
* {@label DEFAULT}
4+
*/
5+
someFunction(): void;
6+
/**
7+
* {@label WITHNUMBER}
8+
*/
9+
someFunction(num: number): void;
10+
}

0 commit comments

Comments
 (0)