Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-weindel committed Aug 11, 2022
1 parent 2e1fc9f commit af9fd91
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion src/index.ts
@@ -1,4 +1,23 @@
/**
* Some code reproducing a bug.
*/
export const bug = 123;
class MyClass {

/**
* Documentation for aMethod()
*
* This is OK: {@link anotherMethod}
*
* @param aParam But this produces an error: {@link anotherMethod}
*/
aMethod(aParam: number) {

}

/**
* Documentation for anotherMethod()
*/
anotherMethod() {

}
}

0 comments on commit af9fd91

Please sign in to comment.