Closed
Description
Say I have some class with an instance and static method of the same name:
export class Foo {
...
public bar() { }
public static bar() { }
...
}
and some reference to it within documentation of another class:
/**
* See [[Foo.bar]].
*/
export class Baz {
...
}
Is there some way for TypeDoc to reference one of these particular methods? Currently, it seems to link to the first one. In JSDoc, this was done by using {@link Foo#bar} vs {@link Foo#.bar}.