mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
With `--document-exported` we used to only support ```js export default Declaration ``` and ```js export default IdentifierExpression ``` With this change we generate a comment for all default exports. Fixes #543
6 lines
69 B
JavaScript
6 lines
69 B
JavaScript
// Options: {"documentExported": true}
|
|
|
|
export default {
|
|
x: 42,
|
|
};
|