If I have two stand-alone functions in the structure outlined below:
A/foo.ts
B/bar.ts
Where
bar.ts contains
export const happy()...
And foo.ts contains
/** @see happy /*
How can I establish the correct linkage to bar#happy?
I experimented with borrows and aliases but did not achieve success.