We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
export {myThing}
So, if you have the following snippet:
/** * Test function * @return {void} */ const TestFunction = function() { console.log('test'); }; export {TestFunction};
Esdoc will not generate any documentation for this.
But if you change it to this:
/** * Test function * @return {void} */ export const TestFunction = function() { console.log('test'); };
It'll work as expected.
This does not affects Classes - for them everything is generated OK for both cases.
The text was updated successfully, but these errors were encountered:
Thanks issue!
This is ESDoc bug 😓
Sorry, something went wrong.
fix: can not process seprate function export.
36bb4fd
#30
test: add test for sperate function export.
e630cc9
fix: can not process separate variable export.
fb5a2ac
test: add test for separate variable export.
f819eb0
ESDoc supports separated function and variable export.
awesome, thanks! 👍
No branches or pull requests
So, if you have the following snippet:
Esdoc will not generate any documentation for this.
But if you change it to this:
It'll work as expected.
This does not affects Classes - for them everything is generated OK for both cases.
The text was updated successfully, but these errors were encountered: