documentation/test/fixture/document-exported-export-default-object.input.js
Erik Arvidsson 363a108fe4 fix(extractors): Document export default value (#623)
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
2016-12-03 09:30:24 -08:00

6 lines
69 B
JavaScript

// Options: {"documentExported": true}
export default {
x: 42,
};