If I have two functions in (neither inside an explicit class) in the following structure
A/foo.ts
B/bar.ts
Where
bar.ts has
export const happy()...
And foo.ts has
/** @see happy /*
How can I see the correct linkage to bar#happy?
I tried borrows and and alias to no success.
