For example, I have a function:
/**
* Function returns null
*/
const myFunction = () => {
return null
}
And an object like this:
const internals = {
myFunction: myFunction,
}
So I want to see this description: "Function returns null" at internals.myFunction
in VScode.
But with notations like @inheritDoc, @link and such I just see them as is: {@inheritDoc myFunction}
I want to generate a solid d.ts
with all necessary docs
Is it possible?