You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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}.