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
When using export const x = { ref1, ref2 }; the docs don't contain the /** */ from the implementation of ref1 and ref2. I'm using the flag --excludeNotExported to not export all private functions.
When using the following construct, the docs that are generated should include the docs that come from the comments above the implementation of the function.
/**
* A bunch of docs about this function
*/
const someFunction = (param1: string) => {
// some code
}
export const someSetOfFunctions = {
someFunction,
// ... maybe more functions
}
Actual Behavior
It doesn't show the documentation when exporting through an object with a reference to the functions.
When using
export const x = { ref1, ref2 };
the docs don't contain the/** */
from the implementation ofref1
andref2
. I'm using the flag--excludeNotExported
to not export all private functions.Expected Behavior
When using the following construct, the docs that are generated should include the docs that come from the comments above the implementation of the function.
Actual Behavior
It doesn't show the documentation when exporting through an object with a reference to the functions.
Environment
The text was updated successfully, but these errors were encountered: