Closed backspaces closed 3 years ago
jsDoc does not allow export default to be used directly on the object within the module where it is defined.
Instead the object has to be declared without the export default and a single separate export used:
export default Foo
Use a jsDoc plugin such as https://github.com/ckeditor/ckeditor5-dev to correct this.
See this for details: https://github.com/jsdoc/jsdoc/issues/1132
Yay! Documentation.js removes this problem. Closing.
jsDoc does not allow export default to be used directly on the object within the module where it is defined.
Instead the object has to be declared without the export default and a single separate export used:
Use a jsDoc plugin such as https://github.com/ckeditor/ckeditor5-dev to correct this.