Syntax
@exports <moduleName>
In JSDoc 3.3.0 and later, <moduleName>
may include the module:
prefix. In previous versions, you
must omit this prefix.
Overview
Use the @exports tag when documenting JavaScript modules that export anything other than the "exports" object or the "module.exports" property.
Examples
In modules where you are using the special "exports" object, the @exports tag is never needed. JSDoc automatically recognizes that this object's members are being exported. Similarly, JSDoc automatically recognizes the special "module.exports" property in Node.js modules.
If your module exports an object named anything other than "exports" or "module.exports", use the @exports tag to indicate what is being exported.