Skip to content

Commit

Permalink
Repro for link to external symbol, function, and label
Browse files Browse the repository at this point in the history
  • Loading branch information
steveluscher authored Jan 4, 2025
1 parent 1e7071f commit ab91cf2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
* Some code reproducing a bug.
* {@link SomeInterface#someFunction:WITHNUMBER | someFunction}
*/
export const bug = 123;
10 changes: 10 additions & 0 deletions src/someInterface.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export interface SomeInterface {
/**
* {@label DEFAULT}
*/
someFunction(): void;
/**
* {@label WITHNUMBER}
*/
someFunction(num: number): void;
}

0 comments on commit ab91cf2

Please sign in to comment.